0.1.1 • Published 4 years ago

react-select-3ilogics v0.1.1

Weekly downloads
8
License
-
Repository
-
Last release
4 years ago

React Native Select Input

Installation

Installation can be done through npm or yarn:

npm install react-select-3ilogics --save
# or
yarn add react-select-3ilogics

Usage

Import the SelectInput and wrap you content inside of it.

import React from 'react'
import { View } from 'react-native'
import SelectInput from 'react-select-3ilogics'

class Component extends React.Component {
  render() {
    const options = [{ value: 0, label: '0' }]
    
    return (
      <View>
        <SelectInput value={0} options={options} />
      </View>
    )
  }
}
0.1.1

4 years ago

0.1.0

4 years ago