react-native-multi-select
Version:
react native multi select just like select2 on the web
26 lines (22 loc) • 438 B
JavaScript
import React, {Component, PropTypes} from 'react';
import {
View,
Text,
StyleSheet
} from 'react-native';
export default class Select extends Component {
static propTypes = {
};
state = {
selectedItem: [],
text: ""
};
render() {
let {children, ...rest} = this.props;
return (
<View {...rest}>
{children}
</View>
);
}
}