--- import '../styles/tokens.css'; interface Props { title?: string } const { title = 'Klarbild' } = Astro.props; const user = Astro.locals.user; --- {title} {user && (
Klarbild
{user.name}
)}