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.) - + ); };