import { useState } from 'react'; import { ProfileContext } from './ProfileContext'; export function ProfileContextProvider({ children }: { children: React.ReactNode; }) { const [profile, setProfile] = useState(undefined); return ( {children} ); }