import React from 'react'; import { View } from 'react-native'; import { Text } from 'react-native-paper'; import styles from '../styles/stylesheet'; import { GridViewProps } from '../types'; const GridView: React.FC = ({ words }) => { return ( {words.map((word, index) => ( {index + 1}. {word} ))} ); }; export default GridView;