Reorganize list components

This commit is contained in:
Marshall Bowers 2023-11-29 13:34:50 -05:00
parent 960ef7116d
commit 390b0d8d56
8 changed files with 436 additions and 373 deletions

View file

@ -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(),