@logo-rn/logo-checkbox-list
v0.2.0
Published
<LogoCheckboxList/> allows user to select one or more items from a set or turn the options on or off.
Downloads
6
Readme
@logo-rn/logo-checkbox-list
allows user to select one or more items from a set or turn the options on or off.
Installation
Install the component:
npm i @logo-rn/logo-checkbox-list -s
Usage
Once installed, import the component in your application:
import {LogoCheckboxList} from '@logo-rn/logo-checkbox-list';
const items = [
{ text: "deneme1", value: "value1", enabled: true, selected: true },
{ text: "deneme2", value: "value2", enabled: true, selected: false },
{ text: "deneme3", value: "value3", enabled: true, selected: false }
];
//...
<LogoCheckboxList items={items} />