rsnext/examples/with-next-ui/pages/_app.tsx

13 lines
292 B
TypeScript
Raw Normal View History

import "../styles/globals.css";
import { NextUIProvider } from "@nextui-org/react";
import type { AppProps } from "next/app";
export default function MyApp({ Component, pageProps }: AppProps) {
return (
<NextUIProvider>
<Component {...pageProps} />
</NextUIProvider>
);
}