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

{children}

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

{children}

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

{children}

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