Add option to not use button styling on Modal triggers

This commit is contained in:
Robbie Antenesse 2017-10-31 09:07:52 -06:00
parent 6d79cdc7de
commit 6b8718ed6e
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ export class Modal extends Component {
return (
<div className='is-inline'>
<a className='button'
<a className={!this.props.noButton ? 'button' : null}
onClick={ this.show.bind(this) }>
{ buttonText || 'Show' }
</a>