Skip to content

Commit

Permalink
fix(Menu): change checkbox story
Browse files Browse the repository at this point in the history
  • Loading branch information
tenphi committed Jul 7, 2022
1 parent 8f72765 commit 2d5ad4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/pickers/Menu/Menu.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export const MenuSelectableMultiple = (props) => {
};

export const MenuSelectableCheckboxes = (props) => {
const [selectedKeys, setSelectedKeys] = useState(['1']);
const [selectedKeys, setSelectedKeys] = useState(['1', '2']);
const onSelectionChange = (key) => {
setSelectedKeys(key);
};
Expand Down

0 comments on commit 2d5ad4d

Please sign in to comment.