```js
// List.stories.js | List.stories.jsx
import React from 'react';
import { List } from './List';
import { ListItem } from './ListItem';
export default {
component: List,
};
export const Empty = {
render: (args) =>
,
};
export const OneItem = {
render: (args) => (
),
};
export const ManyItems = {
render: (args) => (
),
};
```