I am currently trying to import css-mediaquery in Typescript like so:
import { match } from 'css-mediaquery'
However, I get this error:
Cannot find module 'css-mediaquery' from '../../../TestFile.test.tsx
Any ideas?
I was using typescript and needed to install @types/css-mediaquery
as well. That fixed my problem.