About page with basic infos and links to github repo

This commit is contained in:
Martin Raifer
2016-09-19 20:49:16 +02:00
parent 2c60c22259
commit e56f973c86
4 changed files with 61 additions and 0 deletions
+5
View File
@@ -67,6 +67,10 @@ export default class App extends React.Component {
this.setState({ workContext: "settings" })
}
onOpenAbout() {
this.setState({ workContext: "about" })
}
onOpenLayers() {
this.setState({ workContext: "layers", })
}
@@ -88,6 +92,7 @@ export default class App extends React.Component {
onStyleUpload={this.onStyleUpload.bind(this)}
onStyleDownload={this.onStyleDownload.bind(this)}
onOpenSettings={this.onOpenSettings.bind(this)}
onOpenAbout={this.onOpenAbout.bind(this)}
onOpenLayers={this.onOpenLayers.bind(this)}
onOpenSources={this.onOpenSources.bind(this)}
/>