Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 300 Bytes

File metadata and controls

17 lines (13 loc) · 300 Bytes

react-native-app-helpers/CheckboxProps

Props to be given to checkbox components.

Usage

import type { CheckboxProps } from "react-native-app-helpers";

const example: CheckboxProps = {
  value: true,
  onChange(to: boolean): void {
    console.log(to);
  },
  disabled: false,
};