import React from "react"; import PropTypes from "prop-types"; import clsx from "clsx"; import { makeStyles } from "@material-ui/core/styles"; import { AppBar, Toolbar, Typography, IconButton } from "@material-ui/core"; import MenuIcon from "@material-ui/icons/Menu"; import ProfileButton from "./ProfileButton"; import LightDarkToggle from "./LightDarkToggle"; import styles from "./styles"; const useStyles = makeStyles(styles); const TopBar = ({ open, handleDrawerOpen }) => { const classes = useStyles(); return ( Network resurrector ); }; TopBar.propTypes = { open: PropTypes.bool.isRequired, handleDrawerOpen: PropTypes.func.isRequired }; export default TopBar;