From aea42344ded1708361e7e1d577e9c6aa370ad64e Mon Sep 17 00:00:00 2001 From: ludovicm67 Date: Fri, 31 Jan 2020 12:18:19 +0100 Subject: webui: transform index and App to TypeScript --- webui/src/App.tsx | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 webui/src/App.tsx (limited to 'webui/src/App.tsx') diff --git a/webui/src/App.tsx b/webui/src/App.tsx new file mode 100644 index 00000000..d996eed6 --- /dev/null +++ b/webui/src/App.tsx @@ -0,0 +1,68 @@ +import AppBar from '@material-ui/core/AppBar'; +import CssBaseline from '@material-ui/core/CssBaseline'; +import { + createMuiTheme, + ThemeProvider, + makeStyles, +} from '@material-ui/core/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'; +import CurrentIdentity from './CurrentIdentity'; + +const theme = createMuiTheme({ + palette: { + primary: { + main: '#263238', + }, + }, +}); + +const useStyles = makeStyles(theme => ({ + offset: { + ...theme.mixins.toolbar, + }, + filler: { + flexGrow: 1, + }, + appTitle: { + ...theme.typography.h6, + color: 'white', + textDecoration: 'none', + display: 'flex', + alignItems: 'center', + }, + logo: { + height: '42px', + marginRight: theme.spacing(2), + }, +})); + +export default function App() { + const classes = useStyles(); + + return ( + + + + + + git-bug + git-bug + +
+ +
+
+
+ + + + + + ); +} -- cgit