From bd8d1fb31ef565e4a4f06e5d083909c82d6f0d1f Mon Sep 17 00:00:00 2001 From: whysman Date: Thu, 27 Mar 2025 23:35:47 -0400 Subject: [PATCH] Added broken page to bottomnav --- components/BottomNav.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/BottomNav.tsx b/components/BottomNav.tsx index ef34704..305d4da 100644 --- a/components/BottomNav.tsx +++ b/components/BottomNav.tsx @@ -3,6 +3,7 @@ import { View } from "react-native"; import styles from "@/assets/styles"; import React, {useState} from "react"; import Location from "@/components/Location"; +import Broken from "@/components/Broken"; interface BNProps { @@ -12,6 +13,7 @@ const BottomNav: React.FC = ({ isProfileActive }) => { const theme = useTheme(); const [menuVisible, setMenuVisible] = useState(false); + return ( @@ -30,7 +32,7 @@ const BottomNav: React.FC = ({ isProfileActive }) => { setMenuVisible(false)} style={{ backgroundColor: theme.colors.primaryContainer, maxHeight: 400 }}> Location - +