mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
29 lines
692 B
TypeScript
29 lines
692 B
TypeScript
import '../styles/globals.css'
|
|
import '../components/TimeRangeSlider/index.scss'
|
|
|
|
import type {AppProps} from 'next/app'
|
|
import Head from 'next/head';
|
|
|
|
import { MantineProvider } from '@mantine/core';
|
|
|
|
function MyApp({Component, pageProps}: AppProps) {
|
|
return <>
|
|
<Head>
|
|
<title>BBGO Back-test Report</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>
|
|
</>
|
|
}
|
|
|
|
export default MyApp
|