);
export default Input;
```
---
class: center
![](images/button.png "Flux")
---
# Button component
## Props
- text
---
# Button component
## Props
- text
## Actions
- onClick
---
```js
import React from 'react';
import styles from './Button.css';
const Button = ({ onClick, children }) => (