高橋 元希 wrote a new post, TS + React + Material UIで動的にMaterialアイコンを表示する 3年 3か月前
Material UIのアイコンを入力とか、データループとかから動的に作成する
サイドバーのデータを表示する例
import * as Icons from ‘@material-ui/icons/’;
interface route {
icon: keyof typeof Icons;
title: string;
to: string;
}
const datas: route[][…]