import { ExclamationIcon } from '@heroicons/react/solid' import { Linkify } from './linkify' export function AlertBox(props: { title: string; text: string }) { const { title, text } = props return (

{title}

) }