Reputation: 61
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";
Upvotes: 1
Views: 922
Reputation: 1612
from PulsingCircle
folder import to styles
should be:
../../styles/Circle.module.css
or
./../../styles/Circle.module.css
Upvotes: 3