eduproj2/app/_examples/server-component/page.tsx
Michael Zhang 1711557f4c initial
2023-08-01 18:38:06 -04:00

18 lines
751 B
TypeScript

// TODO: Duplicate or move this file outside the `_examples` folder to make it a route
import { createServerComponentClient } from '@supabase/auth-helpers-nextjs'
import { cookies } from 'next/headers'
export const dynamic = 'force-dynamic'
export default async function ServerComponent() {
// Create a Supabase client configured to use cookies
const supabase = createServerComponentClient({ cookies })
// This assumes you have a `todos` table in Supabase. Check out
// the `Create Table and seed with data` section of the README 👇
// https://github.com/vercel/next.js/blob/canary/examples/with-supabase/README.md
const { data: todos } = await supabase.from('todos').select()
return <pre>{JSON.stringify(todos, null, 2)}</pre>
}