christian
ff646a0cff
All checks were successful
Deploy to Cloudflare Pages / deploy (push) Successful in 30s
15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
import type { MetaFunction } from "@remix-run/cloudflare";
|
|
import CropSelector from "./CropSelector";
|
|
|
|
export const meta: MetaFunction = () => {
|
|
return [
|
|
{ title: "Convert images for the web!" },
|
|
{ name: "image converter", content: "Image conversion service" },
|
|
];
|
|
};
|
|
|
|
export default function Index() {
|
|
return (
|
|
<CropSelector />);
|
|
}
|