Skip to content

Commit

Permalink
Merge pull request #37 from springload/chore/issue-33-rebase
Browse files Browse the repository at this point in the history
Chore/issue 33 rebase
  • Loading branch information
vincentaudebert committed Dec 7, 2017
2 parents 41a8a63 + 88fea75 commit 07bb1cc
Show file tree
Hide file tree
Showing 6 changed files with 536 additions and 79 deletions.
7 changes: 7 additions & 0 deletions demo/js/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@ class Example extends Component {
super(props);
this.state = {
activeItems: [0, 1],
value: '',
};
this.changeActiveItems = this.changeActiveItems.bind(this);
}

handleChange = evt => {
this.setState({
value: evt.target.value,
});
};

changeActiveItems(activeItems) {
this.setState({
activeItems,
Expand Down
Loading

0 comments on commit 07bb1cc

Please sign in to comment.