From 2b4f13cdb72528930aa8f462b072c9c109df052f Mon Sep 17 00:00:00 2001 From: whysman Date: Fri, 28 Mar 2025 00:22:22 -0400 Subject: [PATCH] Fixed theme incorrectly placed --- components/Broken.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/components/Broken.tsx b/components/Broken.tsx index f31fc98..77c417d 100644 --- a/components/Broken.tsx +++ b/components/Broken.tsx @@ -1,19 +1,20 @@ -import {Dialog, Title, useTheme} from "react-native-paper"; -import { Image } from "react-native"; +import {Title, useTheme} from "react-native-paper"; +import { Image, View } from "react-native"; import React from "react"; -const theme = useTheme(); + const Broken = () => { + const theme = useTheme(); return ( - + The Internet is a Series of Tubes And these aren't connected. {"\n"} (We're still working on this part.) - + ); };