Skip to content

Commit

Permalink
Merge b926062 into 59ad5ed
Browse files Browse the repository at this point in the history
  • Loading branch information
yesmeck committed Oct 9, 2016
2 parents 59ad5ed + b926062 commit 039ef3c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Option.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import React from 'react';
import React, { PropTypes } from 'react';

export default class Option extends React.Component {
static propTypes = {
value: React.PropTypes.string,
value: PropTypes.oneOfType([
PropTypes.string,
PropTypes.number,
]),
};
}

0 comments on commit 039ef3c

Please sign in to comment.