Add prisma ORM

Took 3 hours 2 minutes
This commit is contained in:
Lucàs
2023-03-13 14:36:49 +01:00
parent 7e5ebadaf5
commit 862834e11f
17 changed files with 5626 additions and 135 deletions
+9 -4
View File
@@ -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>
);
}