Add useMemo and useCallback imports
cgen-2e1a892e396346a99b4fbb8ac4454cba
This commit is contained in:
parent
f3f5a49e45
commit
701ccbc00f
1 changed files with 8 additions and 1 deletions
|
|
@ -1,4 +1,11 @@
|
||||||
import React, { createContext, useContext, useEffect, useState } from "react";
|
import React, {
|
||||||
|
createContext,
|
||||||
|
useContext,
|
||||||
|
useEffect,
|
||||||
|
useState,
|
||||||
|
useMemo,
|
||||||
|
useCallback,
|
||||||
|
} from "react";
|
||||||
import { User, Session } from "@supabase/supabase-js";
|
import { User, Session } from "@supabase/supabase-js";
|
||||||
import { supabase } from "@/lib/supabase";
|
import { supabase } from "@/lib/supabase";
|
||||||
import { UserProfile } from "@/lib/database.types";
|
import { UserProfile } from "@/lib/database.types";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue