image-converter-client/app/routes/_index.tsx
christian 40012a771e
All checks were successful
Deploy to Cloudflare Pages / deploy (push) Successful in 29s
yes
2024-10-31 06:34:59 +01:00

14 lines
289 B
TypeScript

import type { MetaFunction } from "@remix-run/cloudflare";
export const meta: MetaFunction = () => {
return [
{ title: "New Remix App" },
{ name: "description", content: "Welcome to Remix!" },
];
};
export default function Index() {
return (
<div>Hej Augusta!</div>)
}