({ children }: DocumentProps)
| 151 | } |
| 152 | |
| 153 | export 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 | |
| 180 | export default function App() { |
| 181 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected