@proca/widget
Version:
Proca is an open-source campaign toolkit designed to empower activists and organisations in their digital advocacy efforts. It provides a flexible and customisable platform for creating and managing online petitions, email campaigns, and other forms of di
13 lines (9 loc) • 345 B
JavaScript
import { createClient } from "@supabase/supabase-js";
const supabaseUrl = process.env.REACT_APP_SUPABASE_URL;
const supabaseAnonKey = process.env.REACT_APP_SUPABASE_ANON_KEY;
let supabase = null;
const useSupabase = () => {
if (!supabase) supabase = createClient(supabaseUrl, supabaseAnonKey);
return supabase;
};
export { useSupabase };