import { h, render, Component } from "preact"; import { AppBar, Toolbar, Container, Typography, Button, Box, Link, } from "@material-ui/core"; import { makeStyles } from "@material-ui/core/styles"; class Header extends Component { constructor(props) { super(props); this.styles = makeStyles({ toolbarButtons: { marginLeft: "auto", }, }); } render() { const classes = this.styles(); return ( Warwick New {" "} ); } } export default Header;