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

27 lines
641 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>
2022-05-19 02:31:37 +00:00
<title>BBGO Back-test Report</title>
2022-05-18 17:00:45 +00:00
<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