mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
Polish admin styles
This commit is contained in:
@ -1,9 +1,7 @@
|
||||
import RequestList from "../components/reqlog/RequestList";
|
||||
|
||||
function Index(): JSX.Element {
|
||||
return (
|
||||
<div>
|
||||
<h1>Hetty</h1>
|
||||
<h1>Hetty123</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
9
admin/src/pages/proxy/index.tsx
Normal file
9
admin/src/pages/proxy/index.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
function Index(): JSX.Element {
|
||||
return (
|
||||
<div>
|
||||
<h1>Proxy123</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Index;
|
@ -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;
|
17
admin/src/pages/proxy/logs/index.tsx
Normal file
17
admin/src/pages/proxy/logs/index.tsx
Normal 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;
|
Reference in New Issue
Block a user