mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2025-02-23 09:54:17 +01:00
18 lines
252 B
Markdown
18 lines
252 B
Markdown
Bootstrap button component.
|
|
|
|
All additional `props` are passed to the `<button>` HTML component.
|
|
|
|
Can be used without parameters:
|
|
|
|
```jsx
|
|
<Button>Click</Button>
|
|
```
|
|
|
|
Using loading spinner:
|
|
|
|
```jsx
|
|
<Button loading disabled>
|
|
Loading...
|
|
</Button>
|
|
```
|