ReactJS Evergreen Toaster 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. Toaster Component allows the user to show an ephemeral message as an overlay. We can use the following approach in ReactJS to use the Evergreen Toaster Component. Toast Props: zIndex: It is used to denote the z-index of the toast.duration: It is used to denote the duration of the toast.onRemove: It is a callback function that is triggered when the toast is all the way closed.intent: It is used to denote the type of alert.title: It is used to denote the title of the alert.children: It is used to define the description of the alert.hasCloseButton: It is used to show a close icon button inside the toast when this is set to true.isShown: It is used to close the Toast and call onRemove when finished then this is set to false. ToastManager Props: bindNotify: It is a function that is triggered with the this.notify function.bindRemove: It is a function that is triggered with the this.remove function.bindGetToasts: It is a function that is triggered with the this.getToasts function.bindCloseAll: It is a function that is triggered with the this.closeAll function. 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 { Button, toaster } from 'evergreen-ui' export default function App() { // Function using toaster notify const customNotify = () => { toaster.notify('Greetings from GeeksforGeeks') } return ( <div style={{ display: 'block', width: 700, paddingLeft: 30 }}> <h4>ReactJS Evergreen Toaster Component</h4> <Button onClick={customNotify}> Trigger Toaster </Button> </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/toaster Comment More infoAdvertise with us Next Article ReactJS Evergreen Toaster Component G gouravhammad Follow Improve Article Tags : ReactJS ReactJS-Evergreen Similar Reads ReactJS Evergreen Tab 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. Tab Component allows the user to switch between components present in given different tabs. It is used for organizing our c 2 min read ReactJS Evergreen Spinner 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. Spinner Component allows the user to show the loading effect. It is used for the purpose of indicating a loading state. We 2 min read ReactJS Evergreen Switch 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. Switch Component allows the user to toggle the state of a single setting on or off. We can use the following approach in Re 2 min read ReactJS Evergreen StatusIndicator 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. StatusIndicator Component allows the user to show or indicate the status of an item. We can use the following approach in R 2 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 Like