import React, { FC } from 'react' type Props = { blockClassName?: string } const displayName = 'Notice' const Notice: FC = ({ blockClassName, children }) => { if (!children) return null return
{children}
} Notice.displayName = displayName export default Notice