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

12 lines
274 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'
import {NextUIProvider} from '@nextui-org/react'
2022-05-06 05:47:13 +00:00
2022-05-16 17:53:51 +00:00
function MyApp({Component, pageProps}: AppProps) {
return <NextUIProvider>
<Component {...pageProps} />
</NextUIProvider>
2022-05-06 05:47:13 +00:00
}
export default MyApp