📜  安装材料 ui typescript 代码示例

📅  最后修改于: 2022-03-11 14:48:36.138000             🧑  作者: Mango

代码示例1
// Installation
npm install @material-ui/core
// or
yarn add @material-ui/core

// In order for types to work, you have to at least have the following options enabled in your tsconfig.json:
{
  "compilerOptions": {
    "lib": ["es6", "dom"],
    "noImplicitAny": true,
    "noImplicitThis": true,
    "strictNullChecks": true
  }
}