ReactJS Evergreen SearchInput Component Last Updated : 11 Jun, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report React Evergreen is a popular front-end library with a set of React components for building beautiful products as this library is flexible, sensible defaults, and User friendly. SearchInput Component allows the user to search by typing in the text input field provided to the user. We can use the following approach in ReactJS to use the Evergreen SearchInput Component. SearchInput Props: This does not take any props. 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 evergreen-ui 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 { SearchInput } from 'evergreen-ui' export default function App() { return ( <div style={{ display: 'block', width: 700, paddingLeft: 30 }}> <h4>ReactJS Evergreen SearchInput Component</h4> <SearchInput placeholder="Search anything..." /> </div> ); } 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://evergreen.segment.com/components/search-input Comment More infoAdvertise with us Next Article ReactJS Evergreen TagInput Component G gouravhammad Follow Improve Article Tags : ReactJS ReactJS-Evergreen Similar Reads ReactJS Evergreen TagInput Component React Evergreen is a popular front-end library with a set of React components for building beautiful products as this library is flexible, sensible defaults, and User friendly. TagInput Component allows the user to type in multiple values as tags. We can use the following approach in ReactJS to use 3 min read ReactJS Evergreen TextInput Component React Evergreen is a popular front-end library with a set of React components for building beautiful products as this library is flexible, sensible defaults, and User friendly. TextInput Component allows the user to type the input text through a text input field. We can use the following approach in 3 min read ReactJS Evergreen Select Component React Evergreen is a popular front-end library with a set of React components for building beautiful products as this library is flexible, sensible defaults, and User friendly. Select Component allows the user to select an item from a list of options. We can use the following approach in ReactJS to 3 min read ReactJS Evergreen SelectMenu Component React Evergreen is a popular front-end library with a set of React components for building beautiful products as this library is flexible, sensible defaults, and User friendly. SelectMenu Component allows the user to select multiple items from a dropdown list. We can use the following approach in Re 6 min read ReactJS Onsen UI SearchInput Component ReactJS Onsen-UI is a popular front-end library with a set of React components designed to develop HTML5 hybrid and mobile web apps beautifully and efficiently. SearchInput Component allows the user to provide a search input text field. We can use the following approach in ReactJS to use the Onsen-U 2 min read ReactJS Evergreen Textarea Component React Evergreen is a popular front-end library with a set of React components for building beautiful products as this library is flexible, sensible defaults, and User friendly. Textarea Component allows the user to type in longer content through the textarea input field. We can use the following app 3 min read Like