diff --git a/crates/storybook2/src/story_selector.rs b/crates/storybook2/src/story_selector.rs index 14edce568e02cf43f34b86e5d27fe8b3169fcbad..0e9335b8161a38315d0eeef07835a123ceb5a1c1 100644 --- a/crates/storybook2/src/story_selector.rs +++ b/crates/storybook2/src/story_selector.rs @@ -70,6 +70,7 @@ pub enum ComponentStory { Keybinding, LanguageSelector, MultiBuffer, + NotificationsPanel, Palette, Panel, ProjectPanel, @@ -131,6 +132,10 @@ impl ComponentStory { ui::MultiBufferStory::new().into_any() }) .into_any(), + Self::NotificationsPanel => view(cx.entity(|cx| ()), |_, _| { + ui::NotificationsPanelStory::new().into_any() + }) + .into_any(), Self::Palette => view(cx.entity(|cx| ()), |_, _| { ui::PaletteStory::new().into_any() })