import React from 'react'; import PropTypes from 'prop-types'; import s0 from 'c/Switch.module.scss'; const noop = () => {}; function Switch({ checked = false, onChange = noop, name = '' }) { return (
); } Switch.propTypes = { checked: PropTypes.bool, onChange: PropTypes.func, name: PropTypes.string }; export default React.memo(Switch);