import { Navbar, NavbarNav, NavbarToggler, Collapse, Container } from "mdbreact"; //import { Link } from "react-scroll"; import React from "react"; /** * The header of the marketing page. */ class MarketingHeader extends React.Component { constructor(props) { super(props); this.state = { showmenu: true }; this.state = { collapse: false }; this.onClick = this.onClick.bind(this); this.handleNavbarClick = this.handleNavbarClick.bind(this); } onClick() { this.setState({ collapse: !this.state.collapse }); } handleNavbarClick() { this.setState({ collapse: false }); } render() { return ( ); } } export default MarketingHeader;