import classNames from 'classnames'; type Props = { children?: React.ReactNode; allSafe?: boolean; hasError?: boolean; className?: string; }; export function OutputBlock(props: Props) { const { children, allSafe, className } = props; return (
{children}
); }