blob: 2dddb3eb69b6c804eac06191519fccf71b603039 (
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
40
41
42
43
44
45
46
47
48
|
import AppBar from '@material-ui/core/AppBar';
import CssBaseline from '@material-ui/core/CssBaseline';
import { createMuiTheme, ThemeProvider } from '@material-ui/core/styles';
import { makeStyles } from '@material-ui/styles';
import Toolbar from '@material-ui/core/Toolbar';
import React from 'react';
import { Route, Switch } from 'react-router';
import { Link } from 'react-router-dom';
import BugQuery from './bug/BugQuery';
import ListQuery from './list/ListQuery';
const theme = createMuiTheme({
palette: {
primary: {
main: '#263238',
},
},
});
const useStyles = makeStyles(theme => ({
appTitle: {
...theme.typography.h6,
color: 'white',
textDecoration: 'none',
},
}));
export default function App() {
const classes = useStyles();
return (
<ThemeProvider theme={theme}>
<CssBaseline />
<AppBar position="static" color="primary">
<Toolbar>
<Link to="/" className={classes.appTitle}>
git-bug webui
</Link>
</Toolbar>
</AppBar>
<Switch>
<Route path="/" exact component={ListQuery} />
<Route path="/bug/:id" exact component={BugQuery} />
</Switch>
</ThemeProvider>
);
}
|