Files
App_nagakaws/types.tsx
2021-04-07 11:31:09 +07:00

18 lines
283 B
TypeScript

export type RootStackParamList = {
Root: undefined;
NotFound: undefined;
};
export type BottomTabParamList = {
TabOne: undefined;
TabTwo: undefined;
};
export type TabOneParamList = {
HomePage: undefined;
};
export type TabTwoParamList = {
ProductList: undefined;
};