aboutsummaryrefslogtreecommitdiff
path: root/bench/install/app/root.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'bench/install/app/root.tsx')
-rw-r--r--bench/install/app/root.tsx20
1 files changed, 20 insertions, 0 deletions
diff --git a/bench/install/app/root.tsx b/bench/install/app/root.tsx
new file mode 100644
index 000000000..4d0236fb2
--- /dev/null
+++ b/bench/install/app/root.tsx
@@ -0,0 +1,20 @@
+import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration } from "@remix-run/react";
+
+export default function App() {
+ return (
+ <html lang="en">
+ <head>
+ <meta charSet="utf-8" />
+ <meta name="viewport" content="width=device-width,initial-scale=1" />
+ <Meta />
+ <Links />
+ </head>
+ <body>
+ <Outlet />
+ <ScrollRestoration />
+ <Scripts />
+ <LiveReload />
+ </body>
+ </html>
+ );
+}