Skip to content

alpha · @scout-ui/react

StickerStack playground

Navigate a bounded stack without rendering the whole collection.

Live · bounded

StickerStack preview

01Start with one loud idea.
CodeAI Prompt · M15

Deterministic React output

Generated code

Plain TSX ready
"use client";

import { StickerStack } from "@scout-ui/react";
import "@scout-ui/react/styles.css";

const items = [
  { id: "shape", title: "Give the idea a shape." },
  { id: "ship", title: "Ship the bounded version." },
  { id: "learn", title: "Learn from real use." },
  { id: "repeat", title: "Keep what sticks." },
] as const;

export default function StickerStackExample() {
  return (
    <StickerStack
      items={items}
      getKey={(item) => item.id}
      renderItem={(item) => (
        <article>
          <h2>{item.title}</h2>
        </article>
      )}
    />
  );
}