import React from "react"; import PropTypes from "prop-types"; import { AppBar, IconButton, Toolbar, Typography } from "@material-ui/core"; import { Home as HomeIcon } from "@material-ui/icons"; import { useHistory } from "react-router-dom"; function NavBar(props) { const history = useHistory(); const homePage = () => { history.push("/"); }; return ( Outreaching {props.children} ); } NavBar.propTypes = { children: PropTypes.node }; export default NavBar;