Skip to content

Commit

Permalink
chore(docs): fix typo 06-chapter-5-persisting-data-via-prisma.mdx (#1007
Browse files Browse the repository at this point in the history
)
  • Loading branch information
riccardoscalco authored Dec 15, 2021
1 parent 3de7f39 commit 87a82a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ Now let's finally ditch our in-memory data! Let's replace it with the Prisma Cli
// api/db.ts
+import { PrismaClient } from '@prisma/client'

export const db = new PrismaClient()
+export const db = new PrismaClient()

-export interface Post {
- id: number
Expand Down

0 comments on commit 87a82a2

Please # to comment.