MCPcopy Index your code
hub / github.com/fontsource/fontsource / Document

Function Document

website/app/root.tsx:153–178  ·  view source on GitHub ↗
({ children }: DocumentProps)

Source from the content-addressed store, hash-verified

151}
152
153export const Document = ({ children }: DocumentProps) => {
154 return (
155 <html lang="en" {...mantineHtmlProps}>
156 <head>
157 <meta charSet="utf-8" />
158 <meta name="viewport" content="width=device-width,initial-scale=1" />
159 <Meta />
160 <Links />
161 <ColorSchemeScript
162 defaultColorScheme="light"
163 suppressHydrationWarning
164 />
165 <script defer src="https://demo.medama.io/script.js" />
166 </head>
167 <body>
168 <MantineProvider theme={theme}>
169 <ReactRouterProvider>
170 <AppShell>{children}</AppShell>
171 </ReactRouterProvider>
172 <ScrollRestoration />
173 <Scripts />
174 </MantineProvider>
175 </body>
176 </html>
177 );
178};
179
180export default function App() {
181 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected