mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 10:37:30 -04:00
19 lines
434 B
TypeScript
19 lines
434 B
TypeScript
import { Box } from "@mui/material";
|
|
|
|
import { Layout, Page } from "features/Layout";
|
|
import LogsOverview from "features/reqlog/components/LogsOverview";
|
|
import Search from "features/reqlog/components/Search";
|
|
|
|
function ProxyLogs(): JSX.Element {
|
|
return (
|
|
<Layout page={Page.ProxyLogs} title="Proxy logs">
|
|
<Box mb={2}>
|
|
<Search />
|
|
</Box>
|
|
<LogsOverview />
|
|
</Layout>
|
|
);
|
|
}
|
|
|
|
export default ProxyLogs;
|