Skip to content

Commit

Permalink
refactor(docs): OverflowMenu example changed
Browse files Browse the repository at this point in the history
  • Loading branch information
zaicevas authored and 32penkin committed Sep 1, 2019
1 parent 44ea5c3 commit c4bbda4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/framework/ui/overflowMenu/overflowMenu.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export type OverflowMenuElement = React.ReactElement<OverflowMenuProps>;
* public render(): React.ReactNode {
* return (
* <OverflowMenu
* data={this.items}
* data={this.data}
* visible={this.state.menuVisible}
* selectedIndex={this.state.selectedIndex}
* onSelect={this.onItemSelect}
Expand Down Expand Up @@ -171,7 +171,7 @@ export type OverflowMenuElement = React.ReactElement<OverflowMenuProps>;
* public render(): React.ReactNode {
* return (
* <OverflowMenu
* data={this.items}
* data={this.data}
* visible={this.state.menuVisible}
* selectedIndex={this.state.selectedIndex}
* onSelect={this.onItemSelect}
Expand Down Expand Up @@ -226,7 +226,7 @@ export type OverflowMenuElement = React.ReactElement<OverflowMenuProps>;
* public render(): React.ReactNode {
* return (
* <OverflowMenu
* data={this.items}
* data={this.data}
* visible={this.state.menuVisible}
* selectedIndex={this.state.selectedIndex}
* onSelect={this.onItemSelect}
Expand Down Expand Up @@ -282,7 +282,7 @@ export type OverflowMenuElement = React.ReactElement<OverflowMenuProps>;
* return (
* <OverflowMenu
* appearance='noDivider'
* data={this.items}
* data={this.data}
* visible={this.state.menuVisible}
* selectedIndex={this.state.selectedIndex}
* onSelect={this.onItemSelect}
Expand Down

0 comments on commit c4bbda4

Please sign in to comment.