1
0
mirror of https://github.com/BoostIo/Boostnote synced 2026-02-02 18:47:21 +00:00

refactor Router & add User settings

This commit is contained in:
Rokt33r
2015-07-11 10:53:04 +09:00
parent 9422825aec
commit e0d52d3578
9 changed files with 290 additions and 47 deletions

View File

@@ -130,7 +130,7 @@ var LaunchModal = React.createClass({
<div onClick={this.handleClick} className='modal launch-modal'>
<div className='modal-body'>
<div className='modal-tab form-group'>
<button className={this.state.currentTab === 'snippet' ? 'btn-primary active' : 'btn-default'} onClick={this.selectSnippetTab}>Snippet</button> <button className={this.state.currentTab === 'blueprint' ? 'btn-primary active' : 'btn-default'} onClick={this.selectBlueprintTab}>Blueprint</button>
<button className={this.state.currentTab === 'snippet' ? 'btn-primary active' : 'btn-default'} onClick={this.selectSnippetTab}>Snippet</button><button className={this.state.currentTab === 'blueprint' ? 'btn-primary active' : 'btn-default'} onClick={this.selectBlueprintTab}>Blueprint</button>
</div>
{form}
</div>