Typescript react - Could not find a declaration file for module ''react-materialize'. 'path/to/module-name.js' implicitly has an any type

前端 未结 14 1181
鱼传尺愫
鱼传尺愫 2020-12-05 09:09

I am trying to import components from react-materialize as -

import {Navbar, NavItem} from \'react-materialize\';

But when the webpack is

14条回答
  •  庸人自扰
    2020-12-05 09:52

    In my case I had a problem with react, so I started doing:

    npm install @types/react

    and then to the

    npm install @types/react-dom

    This worked for me

提交回复
热议问题