// SomeContainer.tsximport {MyComponent} from 'components'
Just add an index.ts inside the components folder (and any other folder you store types of components in)
// components/index.ts// if using export defaultexport {default as MyComponent} from './Mycomponent'// If using named exportsexport * from './Mycomponent'