I'm trying to create a component library with multiple independent components folders. The end goal is to allow a user to do something like
import { Header } from 'component-library/theme/one'
import { Header as HeaderTwo } from 'component-library/theme/two'
But when i try to import it, i get this errors:
I have structured folder like:
src
-index.js
themes
one
- index.js
two
- index.js