potty-chart/src/api.tsx

10 lines
177 B
TypeScript
Raw Permalink Normal View History

2023-02-20 01:52:27 +00:00
import { createClient } from "@supabase/supabase-js";
import { SB_ANON_KEY, SB_URL } from './constants';
2023-02-20 01:52:27 +00:00
export const supabase = createClient(
SB_URL,
SB_ANON_KEY
2023-02-20 01:52:27 +00:00
);