Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript React Router 4 Basics Getting Started with React Router Inline Rendering with <Route>

Ben Moore
Ben Moore
22,588 Points

Material Icon 'Code'

It appears that the project files do not link to Google's material design icons, which is used in the top left of the app.

If anyone else has the same issue, the simplest solution is to place the following HTML inside of the 'index.html' file found in the 'public' folder:

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

You can also download the icon set but if you hate unnecessary bloat and the additional file management responsibility, I'd stick with linking.

For your reference: http://google.github.io/material-design-icons/

Thank you!

1 Answer

Thanks!