import React from "react"; import { useState } from "react"; const Navbar = () => { const [expanded, setExpanded] = useState(false); return (
MediScape
Features Automations About Pricing Contact Us
Doctors Login Sign up
{expanded && ( )}
); }; export default Navbar;