Alurkerja v1.0.0@Beta

Checkbox

Base

option 1
option 2
Typescript
import { Button } from 'alurkerja-ui'
export const ButtonPage = () => {
	return(
		<Checkbox
		  listOption={[
		    { label: 'option 1', value: 1 },
		    { label: 'option 2', value: 2 },
		  ]}
		/>
	)
}

DefaultValue

option 1
option 2
Typescript
import { Button } from 'alurkerja-ui'
export const ButtonPage = () => {
	return(
		<Checkbox
		  listOption={[
		    { label: 'option 1', value: 1 },
		    { label: 'option 2', value: 2 },
		  ]}
		  defaultValue={[1]}
		/>
	)
}