diff --git a/examples/components/Select.js b/examples/components/Select.js index f8d9afa..57a286d 100644 --- a/examples/components/Select.js +++ b/examples/components/Select.js @@ -12,9 +12,8 @@ const MySelect = React.createClass({ const className = this.props.className + ' ' + (this.showRequired() ? 'required' : this.showError() ? 'error' : null); const errorMessage = this.getErrorMessage(); - const value = this.getValue(); - const options = this.props.options.map(option => ( - )); @@ -22,7 +21,7 @@ const MySelect = React.createClass({ return (