import { View } from "react-native"; import StackCustom from "../Stack/StackCustom"; import SkeletonCustom from "./SkeletonCustom"; const ListSkeletonComponent = ({ length = 5, height = 100, }: { length?: number; height?: number; }) => ( {Array.from({ length }).map((_, i) => ( ))} ); export default ListSkeletonComponent;