I'm trying to use the Roboto font in my app and having tough time..
I did npm install --save typeface-roboto and added import 'typeface-roboto' to my React component. But still can't get my font to change. 
I am trying to do like this :
const React = require('react')
import 'typeface-roboto'
class Example extends React.Component {
  render() {
    let styles = {
      root: {
        fontFamily: 'Roboto'
      }
    }
    return (
      <div style={styles.root}>
        <p>
          This text is still not Roboto ?!???!!1
        </p>
      </div>
    )
  }
}
module.exports = Example
Am I missing something? Looking for a simple way to do this without any external css file..
 
     
     
     
     
    