8 lines
183 B
TypeScript
8 lines
183 B
TypeScript
import { withInstall } from '../utils';
|
|
import _Checkbox from './Checkbox';
|
|
|
|
const Checkbox = withInstall<typeof _Checkbox>(_Checkbox);
|
|
|
|
export default Checkbox;
|
|
export { Checkbox };
|