diff --git a/App.tsx b/App.tsx index 02fe628..aaf394d 100644 --- a/App.tsx +++ b/App.tsx @@ -1,11 +1,34 @@ import { StatusBar } from "expo-status-bar"; -import React from "react"; +import React, { useState } from "react"; import { StyleSheet, Text, View } from "react-native"; +import { Button } from "react-native-elements"; +import comments from "./ui/Comments/CommentExample"; +import CommentBox from "./ui/Comments"; + export default function App() { + const [commentsVisible, setCommentsVisible] = useState(false); + return ( Open up App.tsx to start working on your app! +