This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
imageify/src/pages/_app.js

14 lines
239 B
JavaScript
Raw Normal View History

2022-11-13 19:37:29 +00:00
import "../styles/globals.css";
import { NextUIProvider } from "@nextui-org/react";
function MyApp({ Component, pageProps }) {
return (
<NextUIProvider>
<Component {...pageProps} />
</NextUIProvider>
);
}
export default MyApp;