aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/App.js
blob: 3a693dcb06794f81424ec14e9bc61aa10eeb28da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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 }) => (
  <React.Fragment>
    <CssBaseline />
    <AppBar position="static" color="primary">
      <Toolbar>
        <Link to="/" className={classes.appTitle}>
          <Typography variant="title" color="inherit">
            git-bug webui
          </Typography>
        </Link>
      </Toolbar>
    </AppBar>
    <Switch>
      <Route path="/" exact component={ListQuery} />
      <Route path="/bug/:id" exact component={BugQuery} />
    </Switch>
  </React.Fragment>
);

export default withStyles(styles)(withRouter(App));