Answers for "install material ui typescript"

0

install material ui typescript

// 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
  }
}
Posted by: Guest on July-08-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language