diff --git a/src/components/forms/Checkbox/index.jsx b/src/components/forms/Checkbox/index.jsx new file mode 100644 index 00000000..b20e101e --- /dev/null +++ b/src/components/forms/Checkbox/index.jsx @@ -0,0 +1,27 @@ +// @flow +import React from 'react' +import Checkbox, { type CheckoxProps } from 'material-ui/Checkbox' + +class GnoCheckbox extends React.PureComponent { + render() { + const { + input: { + checked, name, onChange, ...restInput + }, + meta, + ...rest + } = this.props + + return ( + + ) + } +} + +export default GnoCheckbox