import React from "react"; export type InputCheckboxProps = { value?: boolean style?: object onChange(...args: unknown[]): unknown }; export default class InputCheckbox extends React.Component { static defaultProps = { value: false, }; onChange = () => { this.props.onChange(!this.props.value); }; render() { return
; } }