import { useContext } from 'react'; import { SessionContext } from '../context/session'; export const useSession = () => useContext(SessionContext);