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