Massive/BestPage.tsx

23 lines
595 B
TypeScript
Raw Normal View History

2022-07-11 01:00:17 +00:00
import {createStackNavigator} from '@react-navigation/stack';
import BestList from './BestList';
import GymSet from './gym-set';
2022-07-08 12:11:10 +00:00
import ViewBest from './ViewBest';
2022-07-03 01:50:01 +00:00
2022-07-11 01:00:17 +00:00
const Stack = createStackNavigator<BestPageParams>();
export type BestPageParams = {
BestList: {};
ViewBest: {
best: GymSet;
2022-07-11 01:00:17 +00:00
};
};
2022-07-04 04:03:48 +00:00
2022-07-11 01:00:17 +00:00
export default function BestPage() {
2022-07-03 01:50:01 +00:00
return (
2022-07-11 01:00:17 +00:00
<Stack.Navigator
screenOptions={{headerShown: false, animationEnabled: false}}>
<Stack.Screen name="BestList" component={BestList} />
<Stack.Screen name="ViewBest" component={ViewBest} />
2022-07-11 01:00:17 +00:00
</Stack.Navigator>
2022-07-03 01:50:01 +00:00
);
}