import { useContext } from 'react'; import { ProfileViewerContext } from './profileViewerContext'; export function useProfileViewer() { return useContext(ProfileViewerContext); }