quivr/frontend/lib/context/SupabaseProvider/hooks/useSupabase.ts
Mamadou DICKO 9bb7ccf651
Frontend/test/chat 1 (#508)
* feat: add providers mocks

* test(<ChatPage/>: add render test using providers
2023-07-05 09:30:22 +02:00

15 lines
376 B
TypeScript

import { useContext } from "react";
import { SupabaseContext } from "../supabase-provider";
import { SupabaseContextType } from "../types";
export const useSupabase = (): SupabaseContextType => {
const context = useContext(SupabaseContext);
if (context === undefined) {
throw new Error("useSupabase must be used inside SupabaseProvider");
}
return context;
};