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