14 lines
No EOL
331 B
TypeScript
14 lines
No EOL
331 B
TypeScript
// import '../styles/globals.css'
|
|
// 1. import `NextUIProvider` component
|
|
import { NextUIProvider } from '@nextui-org/react';
|
|
|
|
function MyApp({ Component, pageProps }: any) {
|
|
return (
|
|
// 2. Use at the root of your app
|
|
<NextUIProvider>
|
|
<Component {...pageProps} />
|
|
</NextUIProvider>
|
|
);
|
|
}
|
|
|
|
export default MyApp; |