{props.datasource.toLowerCase()} provider instead:
-
-{props.datasource.toLowerCase()} provider instead:
-
-{(props.datasource || props.database)?.toLowerCase()} provider instead:
+
+- Set up Prisma ORM from scratch with your favorite database and - learn basic workflows like data modeling, querying, and migrations. -
-- Get started with Prisma ORM and your existing database by - introspecting your database schema and learn how to query your database. -
-Loading...
; if (!session?.user) @@ -890,7 +894,7 @@ export default function DashboardPage() { if (!session?.user) returnRedirecting...
; - //add-start: destructure user from session + //add-start const { user } = session; //add-end @@ -899,7 +903,7 @@ export default function DashboardPage() {Welcome, {user.name || "User"}!
Email: {user.email}
- {/* add-start: sign out button */} + {/* add-start */}