2024-10-30 22:11:22 +00:00
|
|
|
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 (
|
2024-10-31 05:34:59 +00:00
|
|
|
<div>Hej Augusta!</div>)
|
2024-10-30 22:11:22 +00:00
|
|
|
}
|