mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
13 lines
247 B
JavaScript
13 lines
247 B
JavaScript
import '../styles/globals.css';
|
|
import { NextUIProvider } from '@nextui-org/react';
|
|
|
|
function MyApp({ Component, pageProps }) {
|
|
return (
|
|
<NextUIProvider>
|
|
<Component {...pageProps} />
|
|
</NextUIProvider>
|
|
);
|
|
}
|
|
|
|
export default MyApp;
|