bbgo_origin/apps/backtest-report/pages/_app.tsx

27 lines
630 B
TypeScript
Raw Normal View History

2022-05-06 05:47:13 +00:00
import '../styles/globals.css'
2022-05-16 17:53:51 +00:00
import type {AppProps} from 'next/app'
2022-05-18 17:00:45 +00:00
import Head from 'next/head';
import { MantineProvider } from '@mantine/core';
2022-05-06 05:47:13 +00:00
2022-05-16 17:53:51 +00:00
function MyApp({Component, pageProps}: AppProps) {
2022-05-18 17:00:45 +00:00
return <>
<Head>
<title>Page title</title>
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width" />
</Head>
<MantineProvider
withGlobalStyles
withNormalizeCSS
theme={{
/** Put your mantine theme override here */
colorScheme: 'light',
}}
>
<Component {...pageProps} />
</MantineProvider>
</>
2022-05-06 05:47:13 +00:00
}
export default MyApp