interface HeaderProps {
    onCreateAccount?: () => void;
    onLogin?: () => void;
    onLogout?: () => void;
    user?: User;
}

Properties

onCreateAccount?: () => void
onLogin?: () => void
onLogout?: () => void
user?: User