react-native-multi-select
Version:
react native multi select just like select2 on the web
27 lines (23 loc) • 554 B
JavaScript
import React, {Component} from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View
} from 'react-native';
import LocationDropDown from './LocationDropDown';
class App extends Component {
render() {
return (
<View style={{
flex: 1,
justifyContent: 'center',
alignItems: 'center'
}}>
<LocationDropDown/>
</View>
);
}
}
const styles = StyleSheet.create({});
AppRegistry.registerComponent('dropdown', () => App);