/[sudobot]/trunk/docs/components/Navbar/NavbarClientSide.tsx
ViewVC logotype

Contents of /trunk/docs/components/Navbar/NavbarClientSide.tsx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 575 - (show annotations)
Mon Jul 29 17:59:26 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 900 byte(s)
chore: add trunk
1 "use client";
2
3 import useIsMobile from "@/hooks/useIsMobile";
4 import { Button } from "@mui/material";
5 import { useState } from "react";
6 import { MdMenu } from "react-icons/md";
7 import Drawer from "./Drawer";
8
9 export default function NavbarClientSide() {
10 const isMobile = useIsMobile();
11 const [isOpen, setIsOpen] = useState(false);
12
13 return (
14 <>
15 {isMobile && (
16 <>
17 <div className="mobile order-first">
18 <Button
19 style={{ minWidth: 0, color: "white" }}
20 onClick={() => setIsOpen(true)}
21 >
22 <MdMenu size={23} />
23 </Button>
24 </div>
25
26 <Drawer isOpen={isOpen} onClose={() => setIsOpen(false)} />
27 </>
28 )}
29 </>
30 );
31 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26