import Tooltip from './tooltip'
type Props = {
placement: string
}
export default function StopOnFirstErrorBadge({ placement }: Props) {
const content = (
<>
We are testing the “Stop on first error” compilation mode.
Click to give feedback
>
)
return (
{content}
)
}