/* Profile / Settings */ function ProfileScreen({ onNav, onBack, onLogout }) { const Group = ({ header, children }) => ( {header}
{children}
); const Row = ({ icon, tint, ic, title, detail, last, danger }) => ( {!last && } ); const NavRow = ({ icon, tint, ic, title, detail, last, onClick }) => ( {!last && } ); return (
{onBack && }
Profile
Jermaine Hatten
Parent · jermaine@email.com
onNav('help')} /> jlToast('JewelLink EDU · v1.0', { icon:'info' })} last />
); } Object.assign(window, { ProfileScreen });