ReactJS Blueprint HTMLSelect Component Last Updated : 08 Apr, 2022 Comments Improve Suggest changes Like Article Like Report BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. HTMLSelect Component provides a way for users to given them the React alternative to the native HTML select component. It is a styled version of the HTML select component. We can use the following approach in ReactJS to use the ReactJS Blueprint HTMLSelect Component. HTMLSelect Props: disabled: It is used to indicate whether this element is non-interactive.elementRef: It is used to denote a ref handler or a ref object that receives the native HTML element rendered by this component.fill: It is used to indicate whether this element should fill its container.iconProps: It is used to denote the props to spread to the <Icon> element.large: It is used to indicate whether to use large styles.minimal: It is used to indicate whether to use minimal styles.multiple: It is used to denote the multiple select is not supported.onChange: It is used to denote the change event handler.options: It is used to denote the Shorthand for supplying options.value: It is used to denote the controlled value of this component.Creating React Application And Installing Module: Step 1: Create a React application using the following command: npx create-react-app foldername Step 2: After creating your project folder i.e. foldername, move to it using the following command: cd foldername Step 3: After creating the ReactJS application, Install the required module using the following command: npm install @blueprintjs/core Project Structure: It will look like the following. Project StructureExample: Now write down the following code in the App.js file. Here, App is our default component where we have written our code. App.js import React from 'react' import '@blueprintjs/core/lib/css/blueprint.css'; import { HTMLSelect } from "@blueprintjs/core"; function App() { return ( <div style={{ display: 'block', width: 400, padding: 30 }}> <h4>ReactJS Blueprint HTMLSelect Component</h4> <div > <HTMLSelect> <option selected>Monday</option> <option value="Tuesday">Tuesday</option> <option value="Wednesday">Wednesday</option> <option value="Thursday">Thursday</option> <option value="Friday">Friday</option> <option value="Saturday">Saturday</option> <option value="Sunday">Sunday</option> </HTMLSelect> </div> </div > ); } export default App; Step to Run Application: Run the application using the following command from the root directory of the project: npm startOutput: Now open your browser and go to http://localhost:3000/, you will see the following output: Reference: https://blueprintjs.com/docs/#core/components/html-select Comment More infoAdvertise with us Next Article ReactJS Blueprint HTMLSelect Component gouravhammad Follow Improve Article Tags : JavaScript Web Technologies ReactJS React-Blueprint Blueprint-Core Blueprint-Form Controls +2 More Similar Reads ReactJS Blueprint Label Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. Label Component provides a way for users to enhance the usability of their forms. We can use the following approach in ReactJS 2 min read ReactJS Blueprint HTML Table Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. HTMLTable Component provides a way for users to add modifier props to apply styles to an HTML <table> element. We can us 2 min read ReactJS Blueprint Portal Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. Portal Component renders its children into a new subtree outside the current component hierarchy. We can use the following app 2 min read ReactJS Blueprint FileInput Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. FileInput Component provides a way for users to upload files to our application. We can use the following approach in ReactJS 2 min read ReactJS Blueprint DateInput Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. DateInput Component helps the user to enter the date as an input. We can use the following approach in ReactJS to use the Reac 4 min read ReactJS Blueprint DatePicker Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. DatePicker Component helps the user to choose a single date. We can use the following approach in ReactJS to use the ReactJS B 3 min read ReactJS Blueprint HTML Elements Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. HTML Elements Component provides a way for users to use the general HTML elements like heading, paragraph, etc tags. We can us 2 min read ReactJS Blueprint DateTimePicker Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. DateTimePicker Component is composed of DatePicker and a TimePicker into one container. We can use the following approach in R 2 min read ReactJS Blueprint Radio Component BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. Radio component allows the user to allow the user to select one option from a set. We can use the following approach in ReactJ 3 min read React.js Blueprint Menu Component item BlueprintJS is a React-based UI toolkit for the web. This library is very optimized and popular for building interfaces that are complex data-dense for desktop applications. In this article, we will discuss React.js BluePrint Menu Component Item. A Menu is a list of interactive items and a menu item 4 min read Like