Reorganize list components
This commit is contained in:
parent
960ef7116d
commit
390b0d8d56
8 changed files with 436 additions and 373 deletions
|
@ -21,6 +21,7 @@ pub enum ComponentStory {
|
|||
IconButton,
|
||||
Keybinding,
|
||||
Label,
|
||||
List,
|
||||
ListItem,
|
||||
Scroll,
|
||||
Text,
|
||||
|
@ -40,6 +41,7 @@ impl ComponentStory {
|
|||
Self::IconButton => cx.build_view(|_| ui::IconButtonStory).into(),
|
||||
Self::Keybinding => cx.build_view(|_| ui::KeybindingStory).into(),
|
||||
Self::Label => cx.build_view(|_| ui::LabelStory).into(),
|
||||
Self::List => cx.build_view(|_| ui::ListStory).into(),
|
||||
Self::ListItem => cx.build_view(|_| ui::ListItemStory).into(),
|
||||
Self::Scroll => ScrollStory::view(cx).into(),
|
||||
Self::Text => TextStory::view(cx).into(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue