import cx from 'classnames'; export interface IFormNoticeProps { className?: string; style?: React.CSSProperties; } export const FormNotice: React.FC = ({ className, style, children, }) => (
{children}
);