mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-04-28 20:35:19 +08:00
22 lines
438 B
TypeScript
22 lines
438 B
TypeScript
/**
|
|
* Navigators
|
|
*/
|
|
export { default as createBottomTabNavigator } from './navigators/createBottomTabNavigator';
|
|
|
|
/**
|
|
* Views
|
|
*/
|
|
export { default as BottomTabView } from './views/BottomTabView';
|
|
export { default as BottomTabBar } from './views/BottomTabBar';
|
|
|
|
/**
|
|
* Types
|
|
*/
|
|
export type {
|
|
BottomTabNavigationOptions,
|
|
BottomTabNavigationProp,
|
|
BottomTabScreenProps,
|
|
BottomTabBarProps,
|
|
BottomTabBarOptions,
|
|
} from './types';
|