import * as React from "react"; import { AppBar, Toolbar, IconButton, Stack, Typography } from "@mui/material"; import SearchForm from "./SearchForm"; import Email from "./Email"; import Notification from "./Notification"; import Profile from "./Profile"; import Tooltip from "@mui/material/Tooltip"; import CurrentDate from "./CurrentDate"; const TopNavbar = ({ toggleActive }) => { return ( <>
{/* Search form */} {/* CurrentDate */} {/* Notification */} {/* Notification */} {/* Profile */}
); }; export default TopNavbar;