1import { Text } from 'react-native'; 2 3export default function Page() { 4 return ( 5 <Text testID="index-text" style={{ fontFamily: 'sweet' }}> 6 Index 7 </Text> 8 ); 9} 10