import { createStackNavigator } from "@react-navigation/stack"; import EditWeight from "./EditWeight"; import ViewWeightGraph from "./ViewWeightGraph"; import Weight from "./weight"; import WeightList from "./WeightList"; export type WeightPageParams = { Weights: {}; EditWeight: { weight: Weight; }; ViewWeightGraph: {}; }; const Stack = createStackNavigator(); export default function WeightPage() { return ( ); }