export function Title(props: { text: string }) { const { text } = props return (

{text}

) }