I am totally new to ReactJS and I found myself stuck in the next thing. I have installed react-cards via npm like this:
npm install --save react-cards
Installation was ok and I want to import it in my code like this:
import Card from 'react-cards';
But then I got error saying this:
Could not find a declaration file for module 'react-cards':'path' implicitly has an 'any' type. Try 'npm install @types/react-cards' if it exists or add a new declaration(.d.ts) file containing 'declare module 'react-cards';'.
I have tried with npm install @types/react-cards but nothing changed.
I don't know what to do.