import { useContext } from 'react'; import { ProfileContext } from '../context/profile'; export const useProfile = () => useContext(ProfileContext);