image-converter-client/app/routes/_index.tsx
christian ff646a0cff
All checks were successful
Deploy to Cloudflare Pages / deploy (push) Successful in 30s
moved CropSelector to component
2024-11-02 23:38:33 +01:00

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 />);
}