add server management and multiteam settings

This commit is contained in:
Chris Duarte
2017-09-07 15:27:44 -07:00
committed by David Meza
parent 26bb64b8b7
commit 8c82685d46
6 changed files with 129 additions and 104 deletions

View File

@@ -24,7 +24,8 @@ const MainPage = createReactClass({
initialIndex: PropTypes.number.isRequired,
useSpellChecker: PropTypes.bool.isRequired,
onSelectSpellCheckerLocale: PropTypes.func.isRequired,
deeplinkingUrl: PropTypes.string
deeplinkingUrl: PropTypes.string,
showAddServerButton: PropTypes.bool.isRequired
},
getInitialState() {
@@ -258,6 +259,7 @@ const MainPage = createReactClass({
activeKey={this.state.key}
onSelect={this.handleSelect}
onAddServer={this.addServer}
showAddServerButton={this.props.showAddServerButton}
/>
</Row>
);