diff options
Diffstat (limited to 'examples/kitchen-sink/apps/blog/app/root.tsx')
| -rw-r--r-- | examples/kitchen-sink/apps/blog/app/root.tsx | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/examples/kitchen-sink/apps/blog/app/root.tsx b/examples/kitchen-sink/apps/blog/app/root.tsx deleted file mode 100644 index 23a08a8..0000000 --- a/examples/kitchen-sink/apps/blog/app/root.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import type { MetaFunction, LinksFunction } from "@remix-run/node"; -import { - Links, - LiveReload, - Meta, - Outlet, - Scripts, - ScrollRestoration, -} from "@remix-run/react"; -import styles from "~/styles.css"; -import { Analytics } from "@vercel/analytics/react"; - -export const meta: MetaFunction = () => ({ - charset: "utf-8", - title: "Blog | Kitchen Sink", - viewport: "width=device-width,initial-scale=1", -}); - -export const links: LinksFunction = () => [{ rel: "stylesheet", href: styles }]; - -export default function App() { - return ( - <html lang="en"> - <head> - <Meta /> - <Links /> - </head> - <body> - <Outlet /> - <ScrollRestoration /> - <Scripts /> - <LiveReload /> - <Analytics /> - </body> - </html> - ); -} |
