From cdbea1fa47d1ec19943e32ca77ef76b1aa0a634c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Obermu=CC=88ller?= Date: Wed, 22 Nov 2023 11:05:21 +0100 Subject: [PATCH] add storybook story --- .../lib/components/CommandBar/CommandBar.stories.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/frontend/src/lib/components/CommandBar/CommandBar.stories.tsx b/frontend/src/lib/components/CommandBar/CommandBar.stories.tsx index f114b91f54a4c..8289a88918ef3 100644 --- a/frontend/src/lib/components/CommandBar/CommandBar.stories.tsx +++ b/frontend/src/lib/components/CommandBar/CommandBar.stories.tsx @@ -277,3 +277,13 @@ export function Actions(): JSX.Element { return } + +export function Shortcuts(): JSX.Element { + const { setCommandBar } = useActions(commandBarLogic) + + useEffect(() => { + setCommandBar(BarStatus.SHOW_SHORTCUTS) + }, []) + + return +}