2022-01-28 20:20:15 +01:00
|
|
|
import { Box } from "@mui/material";
|
2020-10-29 20:54:17 +01:00
|
|
|
|
2022-02-23 15:20:23 +01:00
|
|
|
import { Layout, Page } from "features/Layout";
|
|
|
|
import LogsOverview from "features/reqlog/components/LogsOverview";
|
|
|
|
import Search from "features/reqlog/components/Search";
|
2020-09-23 18:10:32 +02:00
|
|
|
|
|
|
|
function ProxyLogs(): JSX.Element {
|
|
|
|
return (
|
2020-09-27 18:59:38 +02:00
|
|
|
<Layout page={Page.ProxyLogs} title="Proxy logs">
|
2020-10-29 20:54:17 +01:00
|
|
|
<Box mb={2}>
|
|
|
|
<Search />
|
|
|
|
</Box>
|
2020-09-23 18:10:32 +02:00
|
|
|
<LogsOverview />
|
|
|
|
</Layout>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default ProxyLogs;
|