My index.ts file looks like as following:
import StaffMembers from './StaffMembers';import GuestMembers from './GuestMembers';export { StaffMembers, GuestMembers,};
My folder structure looks like
I'm importing components as
import { StaffMembers, GuestMembers } from '../request/components';
However when my app screen needs to load the component, it crashes giving the below error: Error when app crashes while loading component
When I edit the component's file and save it again, the app works fine.
Is there anything that I'm missing while importing the component? or something else?