import classNames from 'classnames'; import React from 'react'; import LabelInfo from './components/label-info'; import wrapperStyle from './components/wrapper.less'; interface WrapperProps { children: React.ReactNode; label: React.ReactNode; status?: string; className?: string; disabled?: boolean; required?: boolean; description?: string; onClick?: () => void; } const Wrapper: React.FC = ({ children, label, status, className, disabled, required, description }) => { return (
{children}
); }; export default Wrapper;