Set default key of the application to Home. It was set to blank, which meant that the application wasn't on any page when the user first visits the application.

This commit is contained in:
WildScotsmen 2018-10-31 19:14:24 -04:00
parent a9bf3aa5e4
commit 3f36ee55a1
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ const styles = theme => ({
class ResponsiveDrawer extends React.Component { class ResponsiveDrawer extends React.Component {
state = { state = {
mobileOpen: false, mobileOpen: false,
key: '', key: 'Home',
open: false open: false
}; };