Skip to content

Instantly share code, notes, and snippets.

@phongvh
Created July 31, 2018 12:16
Show Gist options
  • Save phongvh/a25981c7f4ca24723a85e124cece976c to your computer and use it in GitHub Desktop.
Save phongvh/a25981c7f4ca24723a85e124cece976c to your computer and use it in GitHub Desktop.
class SampleComponent extends Component {
render() {
let classes = ['btn', 'btn-primary'];
classes.push('active');
return <Button className={classes.join(' ')}>Submit</Button>;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment