use*_*620 2 reactjs material-ui
我使用material-ui 1.0.0-beta 31下面的组件.排版样式不显示在页面上,所有文本都具有相同的样式.有人可以解释一下我做错了吗?
import React from 'react';
import Typography from 'material-ui/Typography';
const LearningPage = (props, { authUser }) =>
<div>
<Typography variant="headline" component="h2">
benevent
</Typography>
<Typography >adjective</Typography>
<Typography component="p">
well meaning and kindly.<br />
{'"a benevolent smile"'}
</Typography>
<Typography variant="headline" gutterBottom>
Headline
</Typography>
</div>
export default LearningPage;
Run Code Online (Sandbox Code Playgroud)