Selector.propTypes ={/**
* Data input for the selector
*/
data: PropTypes.array,/**
* Title for the selected list
*/
selectedTitle: PropTypes.string,/**
* Function for getting the values of the selected values
*/
getSelected: PropTypes.func,}
Selector.defaultProps ={
data:[],
selectedTitle:'Selected',
getSelected:function(values){
console.log('Selected Values: ', values)},}