/** * Why are we doing all this index.ts work throughout the project? * This allows for separation of importing "everything" versus only * selective components. This can be important when it comes to screens * and navigators, which use libraries like react-native-safe-area-context * which produce errors if consumers are using a different version. */ export * from './common'; export * from './components'; export * from './hooks'; export * from './screens'; export * from './navigators'; export * from './types';