material-uiでCardHeaderの中にTypographyを書いたのですが、表示されませんでした。CardHeaderにTypographyを適用させることはできますか?
以下renderの中身です。
typescript
1 return ( 2 <div> 3 <Card elevation={1} style={{ maxWidth: "400px" }}> 4 <CardHeader> 5 <Typography variant="h5">title</Typography> 6 </CardHeader> 7 <CardContent> 8 aaa 9 <link 10 href="https://fonts.googleapis.com/css?family=M+PLUS+1p" 11 rel="stylesheet" 12 ></link> 13 </CardContent> 14 <CardContent> 15 bbb 16 </CardContent> 17 </Card> 18 </div> 19 );
タイトルになにも要件がなく、タグを繰り返しているだけです。要件を記載してください
回答1件
あなたの回答
tips
プレビュー