# GoogleFontLoader
This is a _really_ simple component that can automatically handle loading Google fonts for you.
You simply pass it a config array and it will load the fonts for you by appending a `` tag to the document head. It will update itself if the config changes, and will remove itself on unmount.
Example usage:
```JavaScript
const App = () => (
<>
This will be in Roboto Mono!
This will be in Roboto!
> ); ```