|
- import {
- Links,
- LiveReload,
- Meta,
- Outlet,
- Scripts,
- ScrollRestoration,
- } from "@remix-run/react";
-
- import type {LinksFunction} from '@remix-run/node';
- import * as React from 'react';
- import globalStylesheetUrl from './style.css';
-
- export const links: LinksFunction = () => {
- return [{ rel: "stylesheet", href: globalStylesheetUrl }];
- };
-
- const App = () => (
- <html lang="en-PH">
- <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>
- )
-
- export default App
|