import {createStackNavigator} from '@react-navigation/stack'; import React from 'react'; import BestList from './BestList'; import Set from './set'; import ViewBest from './ViewBest'; const Stack = createStackNavigator(); export type BestPageParams = { BestList: {}; ViewBest: { best: Set; }; }; export default function BestPage() { return ( ); }