Files
App_nagakaws/types.tsx

18 lines
287 B
TypeScript
Raw Normal View History

2021-03-29 10:09:41 +07:00
export type RootStackParamList = {
Root: undefined;
NotFound: undefined;
};
export type BottomTabParamList = {
TabOne: undefined;
TabTwo: undefined;
};
export type TabOneParamList = {
TabOneScreen: undefined;
};
export type TabTwoParamList = {
TabTwoScreen: undefined;
};