muller
muller

Reputation: 61

How can I access inner directories in react

I have this folder structure but I don't exactly know how to import file from my style folder to for example my PulsingCircle component. three dots is not working, I can't just type import CirclStyle from ".../styles/Circle.module.css"; enter image description here

Upvotes: 1

Views: 922

Answers (1)

David Yappeter
David Yappeter

Reputation: 1612

from PulsingCircle folder import to styles should be:

../../styles/Circle.module.css

or

./../../styles/Circle.module.css

Upvotes: 3

Related Questions