Skip to content

Commit

Permalink
fix: move value declaration outside of example component
Browse files Browse the repository at this point in the history
  • Loading branch information
HellWolf93 committed Jun 28, 2020
1 parent 95fd79f commit a9cc0bf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/MultiSelect/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,12 +172,12 @@ const containerStyles = {
maxWidth: 400,
};

const MultiSelectExample = props => {
const value = [{
label: 'All buildings',
name: 'all',
}];
const value = [{
label: 'All buildings',
name: 'all',
}];

const MultiSelectExample = props => {
return (
<div>
<MultiSelect
Expand Down

0 comments on commit a9cc0bf

Please sign in to comment.