mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-06-16 13:46:16 +02:00
Format all files with Prettier
This commit is contained in:
@ -1,16 +1,17 @@
|
||||
Checkbox with label Bootstrap component with predefined sizes and structure for using in foris forms.
|
||||
|
||||
All additional `props` are passed to the `<input type="checkbox">` HTML component.
|
||||
Checkbox with label Bootstrap component with predefined sizes and structure for
|
||||
using in foris forms.
|
||||
|
||||
All additional `props` are passed to the `<input type="checkbox">` HTML
|
||||
component.
|
||||
|
||||
```js
|
||||
import {useState} from 'react';
|
||||
import { useState } from "react";
|
||||
const [value, setValue] = useState(false);
|
||||
|
||||
<CheckBox
|
||||
value={value}
|
||||
label="Some label"
|
||||
label="Some label"
|
||||
helpText="Read the small text!"
|
||||
onChange={event =>setValue(event.target.value)}
|
||||
/>
|
||||
onChange={(event) => setValue(event.target.value)}
|
||||
/>;
|
||||
```
|
||||
|
Reference in New Issue
Block a user