mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-07-09 23:18:07 +00:00
Add prisma ORM
Took 3 hours 2 minutes
This commit is contained in:
+9
-4
@@ -1,6 +1,11 @@
|
||||
import '@/styles/globals.css'
|
||||
import type { AppProps } from 'next/app'
|
||||
import '@/styles/globals.css';
|
||||
import type {AppProps} from 'next/app';
|
||||
import {ChakraProvider} from '@chakra-ui/react';
|
||||
|
||||
export default function App({ Component, pageProps }: AppProps) {
|
||||
return <Component {...pageProps} />
|
||||
export default function App({Component, pageProps}: AppProps) {
|
||||
return (
|
||||
<ChakraProvider>
|
||||
<Component {...pageProps} />
|
||||
</ChakraProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user