Package Exports
- react-complete
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-complete) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React-Complete
simple customizable react autocomplete component
Install
npm install react-complete --saveUsage
import Complete from 'react-complete';<Complete data={data} prop={prop} field={field} />Data
const data = ['react', 'vue', 'angular'];
const data = (value) => fetch('...').then((res) => res.json());const data = {
languages: {
name: 'javascript',
frameworks: [
{
name: 'react',
},
{
name: 'vue',
},
{
name: 'angular',
},
],
},
};<Complete data={data} prop="languages.frameworks" field="name" />License
ISC