import React from 'react'; class Checkbox extends React.Component { render() { let {checked = false, disabled, value, label, inputRef, className, name} = this.props; let dataTestId = this.props['data-test-id']; return (