import { FunctionalComponent } from 'preact'; export const Title: FunctionalComponent = ({ children }) => (

{children}

); export const Subtitle: FunctionalComponent = ({ children }) => (

{children}

); export const Text: FunctionalComponent = ({ children }) => (

{children}

); export const Button: FunctionalComponent<{ label: string; link: string }> = ({ label, link, }) => ( {label} );