Add message to indicate /routes is not implemented (#77)

If someone clicks on Routes in the sidebar, the page appears to fail to load, 
but this endpoint is unimplemented. Add a message to indicate that.
This commit is contained in:
Risha Mars 2017-12-20 10:25:10 -08:00 committed by GitHub
parent 9fca7e8b36
commit 13a62cb21b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ export default class Routes extends React.Component {
<div className="page-header">
<h1>Routes</h1>
</div>
<div>Coming soon!</div>
</div>
);
}
}
}