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:
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