christian
40012a771e
All checks were successful
Deploy to Cloudflare Pages / deploy (push) Successful in 29s
14 lines
289 B
TypeScript
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>)
|
|
}
|