Package Exports
- @heycar-uikit/dropdown
- @heycar-uikit/dropdown/dist/esm/index.js
- @heycar-uikit/dropdown/dist/index.js
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 (@heycar-uikit/dropdown) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
HeyCar-UIKit - Dropdown
The Dropdown components use
Installation
To install and save in your package.json dependencies, run the command below using npm:
npm install @heycar-uikit/dropdownUsage
import Dropdown from '@heycar-uikit/dropdown';
function App() {
return (
<div>
<Dropdown id="marque" labelFor="marque" label="Marque label">
<option value="Marque">Marque</option>
<option value="saab">Saab</option>
<option value="opel">Opel</option>
<option value="audi">Audi</option>
</Dropdown>
</div>
);
}Documentation and sandbox
Storybook documentation and sandbox