mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
24 lines
566 B
Svelte
24 lines
566 B
Svelte
<script>
|
|
export let story = undefined;
|
|
|
|
import Pagination from "./Pagination.svelte";
|
|
import PaginationSkeleton from "./Pagination.Skeleton.svelte";
|
|
</script>
|
|
|
|
<div style="width: 800px;">
|
|
{#if story === 'multiple'}
|
|
<Pagination {...$$props}>Pagination</Pagination>
|
|
<Pagination {...$$props}>Pagination</Pagination>
|
|
{:else if story === 'skeleton'}
|
|
<PaginationSkeleton />
|
|
{:else}
|
|
<Pagination
|
|
{...$$props}
|
|
on:update="{({ detail }) => {
|
|
console.log(detail);
|
|
}}"
|
|
>
|
|
Pagination
|
|
</Pagination>
|
|
{/if}
|
|
</div>
|