welinux-reactjs-components
v1.0.2
Published
Welinux ReactJS Components.
Downloads
1
Readme
DropDownSelect
This class is depends on react-bootstrap, is intended to be used within a Nav component.
Ej:
import React from "react"; import { DropDownSelect } from ".welinux-reactjs-components"; import { Navbar, Nav } from "react-bootstrap";
Suposse array with months of th year
const meses = [ { value: 1, label: "Enero" }, { value: 2, label: "Febrero" }, { value: 3, label: "Marzo" } ];
Then:
<Navbar>
<Nav>
<DropDownSelect
singular="Mes"
plural="Meses"
items={meses}
onClick={this.mesSeleccionado}
/>