123456789101112131415161718192021222324252627282930313233 |
- import {
- Links,
- LiveReload,
- Meta,
- Outlet,
- Scripts,
- } from "@remix-run/react";
-
- export default function App() {
- return (
- <html>
- <head>
- <link
- rel="icon"
- href="data:image/x-icon;base64,AA"
- />
- <Meta />
- <title>Welcome to Remix!</title>
- <Links />
- </head>
- <body>
- <h1>Hello world!</h1>
- This is a test
- sada
- <Outlet />
-
- <Scripts />
- <LiveReload />
- </body>
- </html>
- );
- }
-
|