Skip to content

Commit

Permalink
chore: rename story to Toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikThePendric committed Jun 19, 2023
1 parent 1061dc4 commit ac75e1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/__demo__/Toolbar.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down Expand Up @@ -73,6 +73,6 @@ function HoverMenuBarWithSubComponents() {
)
}

storiesOf('HoverMenuBar', module).add('default', () => {
return <HoverMenuBarWithSubComponents />
storiesOf('Toolbar', module).add('default', () => {
return <ToolbarWithState />
})

0 comments on commit ac75e1f

Please sign in to comment.