How to show mui badge with tooltip in react js?
July 04, 2023Hi Friends 👋,
Welcome To aGuideHub!
To show mui badge with tooltip in react js, you can put <Tooltip title="Notifications" arrow>
. it will show mui badge with tooltip in React JS.
Today, I am going to show you, how to show mui badge with tooltip in react js.
Installation
Install the following packages to use mui Badge in react js.
npm
npm install @mui/material @emotion/react @emotion/styled
yarn
yarn add @mui/material @emotion/react @emotion/styled
Table of contents
- Install MUI and create a new React app.
- Import Material-UI badge.
- Use the badge Component
Step 1: Install MUI and create a new React app.
First you have to install the React project. You should use create-react-app
command to create a new React project.
npx create-react-app my-app
cd my-app
npm start
Step 2: Import Material-UI badge.
After installing MUI
, you have to import your React component. To do this, add the following line to the top of your component file.
import React from "react";
import Badge from "@mui/material/Badge";
import MailIcon from "@mui/icons-material/Mail";
import IconButton from "@mui/material/IconButton";
Step 3: Use the badge Component
You can use the badge
component in your react js. For example, The badge component is used notifications to users. You can use <Badge>
component make a badge in react js.
<Tooltip title="Notifications" arrow>
<Badge badgeContent={5} color="error"></Badge>
</Tooltip>
MUI material show mui badge with tooltip example.
The below code is an example, you need to import badge
Component. you can use this code <Tooltip title="Notifications" arrow>
and <Badge>
in badge and to show mui badge with tooltip in react js.
App.js
import React from "react";
import Badge from "@mui/material/Badge";
import Tooltip from "@mui/material/Tooltip";
function App() {
return (
<Tooltip title="Notifications" arrow>
<Badge badgeContent={5} color="error"></Badge>
</Tooltip>
);
}
export default App;
In the above code example, I have used the @mui/material
component and show mui badge with tooltip in react js.
Check the output of the above code example.
Here, we are provided code sandbox links for the above program show mui badge with tooltip in react js. Then you can use whenever you want and do the changes as per your requirements.
All the best 👍