This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / lib / components / ui / EmptyState.stories.svelte
598 B 23 lines
1<script module lang="ts"> 2 import { defineMeta } from "@storybook/addon-svelte-csf"; 3 import EmptyState from "./EmptyState.svelte"; 4 import Link from "./Link.svelte"; 5 6 const { Story } = defineMeta({ 7 title: "UI/EmptyState", 8 component: EmptyState, 9 tags: ["autodocs"], 10 args: { 11 message: "No repositories yet." 12 } 13 }); 14</script> 15 16<Story name="Default" /> 17 18<!-- Children render inline after the message — typically a call-to-action link. --> 19<Story name="With action" asChild> 20 <EmptyState message="No repositories yet."> 21 <Link href="/repo/new">Create one</Link> 22 </EmptyState> 23</Story>