diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 9c2fba3..643837d 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,67 +1,88 @@ -import { Divider, Stack, SvgIcon, Typography } from "@mui/material"; +import { + Button, + Divider, + Link, + Stack, + SvgIcon, + Typography, +} from "@mui/material"; import React from "react"; +import { useNavigation } from "@react-navigation/native"; +import { NativeStackNavigationProp } from "@react-navigation/native-stack"; +import { StackParamsList } from "../types"; -export const Header: React.FC<{ title: string }> = ({ title }) => ( - - - = ({ title }) => { + const navigation = + useNavigation>(); + return ( + + - - - {title} - -); + + + + + + + + + + + + + + + {title} + + ); +};