import AppBar from '@material-ui/core/AppBar'; import CssBaseline from '@material-ui/core/CssBaseline'; import { withStyles } from '@material-ui/core/styles'; import Toolbar from '@material-ui/core/Toolbar'; import Typography from '@material-ui/core/Typography'; import React from 'react'; import { Route, Switch, withRouter } from 'react-router'; import { Link } from 'react-router-dom'; import BugQuery from './bug/BugQuery'; import ListQuery from './list/ListQuery'; const styles = theme => ({ appTitle: { color: 'white', textDecoration: 'none', }, }); const App = ({ location, classes }) => ( git-bug webui ); export default withStyles(styles)(withRouter(App));