diff --git a/Client/src/Pages/Demo/Demo.jsx b/Client/src/Pages/Demo/Demo.jsx index 7d26b8724..71b48ad49 100644 --- a/Client/src/Pages/Demo/Demo.jsx +++ b/Client/src/Pages/Demo/Demo.jsx @@ -11,6 +11,8 @@ import { FormControlLabel, Radio, RadioGroup, + Tab, + Tabs, } from "@mui/material"; import StatusLabel from "../../Components/Label/StautsLabel"; import Avatar from "../../Components/Avatar/Avatar"; @@ -72,11 +74,16 @@ const rows = ((count) => { const Demo = () => { const [radio, setRadio] = React.useState(1); + const [tab, setTab] = React.useState("departments"); const handleRadio = (event) => { setRadio(event.target.value); }; + const handleTab = (event, newValue) => { + setTab(newValue); + }; + const change = (event, type) => { alert(event.target.checked ? `${type} checked` : `${type} unchecked`); }; @@ -164,7 +171,7 @@ const Demo = () => {