Skip to content

Commit

Permalink
tweaks to make interface more presentable
Browse files Browse the repository at this point in the history
  • Loading branch information
David Banks committed Mar 23, 2020
1 parent 4be60c6 commit 5af8466
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/views/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ import {
const { Header, Content, Footer } = Layout;

const routes = {
"/about": [AboutView, "About"],
"/kepler-view": [KeplerView, "Map View"],
"/": [KeplerView, "Map View"],
"/graph-view": [GraphView, "Graph View"],
"/about": [AboutView, "About"],
"/advanced": [AdvancedView, "Advanced"],
"/workspace": [Workspace, "Workspace"]
// "/formik-demo": [FormikDemo, "Formik Demo"],
Expand Down
8 changes: 5 additions & 3 deletions src/views/KeplerView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,11 @@ class KeplerView extends React.Component<AppProps> {
<p>If only the control pane displays below, and the map itself does not
display, check your internet connection.</p>

<p>Current counter value is {counter}</p>
<Button onClick={this.props.increment}>Increment counter</Button>
<Button disabled onClick={() => this.props.addDataToMap(mockdata)}>Add mock data</Button>
{/* <p>Current counter value is {counter}</p> */}

{/* <Button onClick={this.props.increment}>Increment counter</Button> */}

{/* <Button disabled onClick={() => this.props.addDataToMap(mockdata)}>Add mock data</Button> */}

<Divider />

Expand Down

0 comments on commit 5af8466

Please sign in to comment.