export function Alert({ title, children }: { title: string; children?: React.ReactNode }) { return (
{title}
{children ?
{children}
: null}
) }