reactjs – Typeface-roboto是为了什么?

鉴于反应代码如下:

import React, { Component } from 'react';
import ReactDOM from 'react-dom';

import 'typeface-roboto';
import Typography from '@material-ui/core/Typography';

const App = class extends Component {
  render() {
    return <Typography variant="h1">Hello React App!</Typography>;
  }
}

const root = document.getElementById('root');

ReactDOM.render(<App />, root);

如果我评论import’typeface-roboto’;我的申请没有任何变化.

有人能解释我为什么吗?

沙箱:https://codesandbox.io/s/x2n59kj2lq

最佳答案 包’typeface-roboto’用于导入roboto字体,它包含所有必需的字体文件和CSS文件.只有当你想要改变你的字体时才需要它.而且,typeface-roboto假设你使用webpack来处理CSS和文件.

点赞