Double title.

This commit is contained in:
Dovydas Navickas 2022-02-10 15:19:27 +02:00 committed by GitHub
parent 270284f705
commit 2c9acb31e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,6 @@ export default {
title: 'List',
component: List,
subcomponents: { ListItem }, //👈 Adds the ListItem component as a subcomponent
title: 'List',
} as ComponentMeta<typeof List>;
const Empty: ComponentStory<typeof List> = (args) => <List {...args} />;
@ -26,4 +25,4 @@ const OneItem: ComponentStory<typeof List> = (args) =>(
<ListItem />
</List>
);
```
```