Polish admin styles

This commit is contained in:
David Stotijn
2020-09-23 18:10:32 +02:00
parent a3c22b7f1f
commit e9367f7186
16 changed files with 178 additions and 97 deletions

View File

@ -1,9 +1,7 @@
import RequestList from "../components/reqlog/RequestList";
function Index(): JSX.Element {
return (
<div>
<h1>Hetty</h1>
<h1>Hetty123</h1>
</div>
);
}

View File

@ -0,0 +1,9 @@
function Index(): JSX.Element {
return (
<div>
<h1>Proxy123</h1>
</div>
);
}
export default Index;

View File

@ -1,17 +0,0 @@
import { useState } from "react";
import { Box } from "@material-ui/core";
import RequestList from "../../components/reqlog/RequestList";
import LogDetail from "../../components/reqlog/LogDetail";
import LogsOverview from "../../components/reqlog/LogsOverview";
import Layout from "../../components/Layout";
function Logs(): JSX.Element {
return (
<Layout>
<LogsOverview />
</Layout>
);
}
export default Logs;

View File

@ -0,0 +1,17 @@
import { Typography, Box } from "@material-ui/core";
import LogsOverview from "../../../components/reqlog/LogsOverview";
import Layout from "../../../components/Layout";
function ProxyLogs(): JSX.Element {
return (
<Layout>
<Box mb={2}>
<Typography variant="h5">Proxy logs</Typography>
</Box>
<LogsOverview />
</Layout>
);
}
export default ProxyLogs;