| 10 | import styles from 'components/FormButton/FormButton.scss'; |
| 11 | |
| 12 | const FormButton = props => ( |
| 13 | <div className={styles.input}> |
| 14 | <Button {...props} primary={true} width="80%" /> |
| 15 | </div> |
| 16 | ); |
| 17 | |
| 18 | const { ...otherPropTypes } = Button.propTypes; |
| 19 | FormButton.propTypes = otherPropTypes; |
nothing calls this directly
no outgoing calls
no test coverage detected