1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-10-04 12:14:19 +02:00
foris-js/src/bootstrap/Button.md

18 lines
252 B
Markdown
Raw Normal View History

2019-08-23 15:20:22 +02:00
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
2020-08-18 15:39:00 +02:00
<Button loading disabled>
Loading...
</Button>
2019-08-23 15:20:22 +02:00
```