From 393a42fcebcb182ca1b9b4627cf4551bac56a6b1 Mon Sep 17 00:00:00 2001 From: Cody Bender Date: Fri, 9 Aug 2024 15:38:26 -0400 Subject: [PATCH] feat: home link icon --- src/components/Header.tsx | 149 ++++++++++++++++++++++---------------- 1 file changed, 85 insertions(+), 64 deletions(-) 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} + + ); +};