Examples

Rendering List

Skel UI has a built-in utility for generating placeholders, which is very useful for rendering lists.

 
import Skel, { generatePlaceholder } from "@skel-ui/react";
import { usePosts } from "hooks";
import Image from "@ui/Image";
 
export default function PostCardList() {
  const { posts = generatePlaceholder(4, "postId"), isLoading } = usePosts(1); 
 
  return (
    <Skel.Root isLoading={isLoading} className="list">
      {posts.map((post) => (
        <div key={post.postId} className="card">
          <Skel.Item as={Image} src={post.image as string} radius="0.5rem" className="card-image" />
 
          <Skel.Item as="h1" sw="65%" className="card-title">
            {post.title}
          </Skel.Item>
 
          <Skel.Item sh="4rem" className="card-content">
            {post.description}
          </Skel.Item>
 
          <Skel.Item sw="35%" className="card-detail">
            {post.viewsCount} Views • {post.likesCount} Likes
          </Skel.Item>
        </div>
      ))}
    </Skel.Root>
  );
}

generatePlaceholder

const placeholderUsers = generatePlaceholder(length, primaryKey);

Parameters

NameTypeDescription
lengthnumberThe length of placeholder
primaryKeystringName of the attribute that will be unique and will be used as key

On this page