export function EmptyState({ title, text }: { title: string; text?: string }) { return (

{title}

{text ?

{text}

: null}
); }