export default function Callout({ children, title = 'Important' }) { return (
{title}
{children}
); }