import { View } from "react-native"; interface Props { index: number; } // Dev note might be a good idea to standardize skeletons across the app and have one "file" for it. export const GridSkeleton: React.FC = ({ index }) => { return ( ); };