* Invoked by React immediately after a component is mounted (inserted into the tree). * @public
()
| 121 | * @public |
| 122 | */ |
| 123 | componentDidMount() { |
| 124 | // Load fonts. |
| 125 | loadCSS( |
| 126 | Constants.URI_CDN_GOOGLE_FONTS, |
| 127 | document.querySelector('#insertion-point-jss') |
| 128 | ); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Return a reference to a React element to render into the DOM. |
nothing calls this directly
no outgoing calls
no test coverage detected