Massive/BestPage.tsx

24 lines
612 B
TypeScript
Raw Normal View History

2022-07-11 01:00:17 +00:00
import {createStackNavigator} from '@react-navigation/stack';
import React from 'react';
import BestList from './BestList';
import Set from './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: Set;
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
);
}