import preview from "../../.storybook/preview.tsx";
import { ListItem, ListView } from "./ListView.tsx";
const meta = preview.meta({
title: "Components/ListView",
component: ListView,
});
export const Default = meta.story({
args: {
children: (
<>
}
/>
>
),
fallback: "Empty",
},
});
export const Empty = meta.story({
args: {
fallback: "This list is empty",
},
});