2021-03-29 10:09:41 +07:00
|
|
|
export type RootStackParamList = {
|
|
|
|
|
Root: undefined;
|
|
|
|
|
NotFound: undefined;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type BottomTabParamList = {
|
|
|
|
|
TabOne: undefined;
|
2021-04-07 11:31:09 +07:00
|
|
|
TabTwo: undefined;
|
2021-03-29 10:09:41 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type TabOneParamList = {
|
2021-04-07 11:31:09 +07:00
|
|
|
HomePage: undefined;
|
2021-03-29 10:09:41 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type TabTwoParamList = {
|
2021-04-07 11:31:09 +07:00
|
|
|
ProductList: undefined;
|
2021-03-29 10:09:41 +07:00
|
|
|
};
|