root.jsx 566 B

123456789101112131415161718192021222324252627282930313233
  1. import {
  2. Links,
  3. LiveReload,
  4. Meta,
  5. Outlet,
  6. Scripts,
  7. } from "@remix-run/react";
  8. export default function App() {
  9. return (
  10. <html>
  11. <head>
  12. <link
  13. rel="icon"
  14. href="data:image/x-icon;base64,AA"
  15. />
  16. <Meta />
  17. <title>Welcome to Remix!</title>
  18. <Links />
  19. </head>
  20. <body>
  21. <h1>Hello world!</h1>
  22. This is a test
  23. sada
  24. <Outlet />
  25. <Scripts />
  26. <LiveReload />
  27. </body>
  28. </html>
  29. );
  30. }