UNPKG
react-jsf
Version:
latest (1.3.2)
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
JSF Compliant React Components
github.com/denny99/react-jsf
denny99/react-jsf
react-jsf
/
src
/
jsf
/
objects
/
SelectItem.js
14 lines
•
270 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * represents an select option */
export
default
class
SelectItem
{
/** * *
@param
{
string | number | object
} value option value *
@param
{
string
} label option text */
constructor
(
value, label
) {
this
.
value
= value;
this
.
label
= label; } }