diff --git a/src/__demo__/Toolbar.stories.js b/src/__demo__/Toolbar.stories.js index adba11a77..14d50fb34 100644 --- a/src/__demo__/Toolbar.stories.js +++ b/src/__demo__/Toolbar.stories.js @@ -11,7 +11,7 @@ import { UpdateButton, } from '../components/Toolbar/index.js' -function HoverMenuBarWithSubComponents() { +function ToolbarWithState() { const [isHidden, setIsHidden] = useState(false) const [isSidebarShowing, setIsSidebarShowing] = useState(false) return ( @@ -73,6 +73,6 @@ function HoverMenuBarWithSubComponents() { ) } -storiesOf('HoverMenuBar', module).add('default', () => { - return +storiesOf('Toolbar', module).add('default', () => { + return })