mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-11 09:33:50 +00:00
12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import '../styles/globals.css'
|
|
import type {AppProps} from 'next/app'
|
|
import {NextUIProvider} from '@nextui-org/react'
|
|
|
|
function MyApp({Component, pageProps}: AppProps) {
|
|
return <NextUIProvider>
|
|
<Component {...pageProps} />
|
|
</NextUIProvider>
|
|
}
|
|
|
|
export default MyApp
|