diff --git a/reactNative/app/index.tsx b/reactNative/app/index.tsx index 4bef570..96befdc 100644 --- a/reactNative/app/index.tsx +++ b/reactNative/app/index.tsx @@ -1,4 +1,4 @@ -import { Text, View, Button } from "react-native"; +import { Text, View, Button, ScrollView } from "react-native"; import React, {useState} from 'react'; import { ThemedText } from "@/components/ThemedText" import Blurb, {BlurbData} from "@/components/Blurb" @@ -11,8 +11,8 @@ const default_blurb: BlurbData = { export default function Index() { const [blurbs, setBlurbs] = useState([default_blurb]) return ( - - + ); }