import { IonItem, IonLabel, IonList, IonSkeletonText, IonThumbnail, } from "@ionic/react"; export const SkeletonPosts = (): JSX.Element => { const postAmount = 10; return ( {[...Array(postAmount)].map((post, index) => { return (

); })}
); };