10 lines
239 B
TypeScript
10 lines
239 B
TypeScript
"use client";
|
|
|
|
import { createClientComponentClient } from "@supabase/auth-helpers-nextjs";
|
|
|
|
import type { Database } from "@/lib/types";
|
|
|
|
export function createSupabaseBrowserClient() {
|
|
return createClientComponentClient<Database>();
|
|
}
|