14 lines
239 B
JavaScript
14 lines
239 B
JavaScript
|
import "../styles/globals.css";
|
||
|
|
||
|
import { NextUIProvider } from "@nextui-org/react";
|
||
|
|
||
|
function MyApp({ Component, pageProps }) {
|
||
|
return (
|
||
|
<NextUIProvider>
|
||
|
<Component {...pageProps} />
|
||
|
</NextUIProvider>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default MyApp;
|