## Table of Contents
npm install @hrnet-plugins/react-selectmenu* Installation
* Examples
* Demo
To install, you can use npm or yarn:
$ npm install --save @hrnet-plugins/react-selectmenu
$ yarn add @hrnet-plugins/react-selectmenu
Here is a simple example of react-selectmenu being used in an app:
``jsx
import { SelectMenu } from '@hrnet/react-selectmenu';
function App() {
const options = [
{ option: "option1", value: "value1" },
{ option: "option2", value: "value2" },
{ option: "option3", value: "value3" }
];
const handleChange = event => {
console.log(event.target.value);
const { name, value } = event.currentTarget;
console.log(name, value);
};
return (