mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
18 lines
392 B
TypeScript
18 lines
392 B
TypeScript
![]() |
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;
|