Updating the menu

We will update the navigation menu to add the MAKE GAME button, as shown in the following screenshot:

In the Menu component, we will add the Link to the route for the NewGame component, right before the MY PROFILE Link, in the section that renders only when the user is authenticated.

mern-vrgame/client/core/Menu.js:

<Link to="/game/new">   <Button style={isActive(history, "/game/new")}>       <AddBoxIcon color="secondary"/> Make Game   </Button></Link>

Get Full-Stack React Projects now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.