Files
hetty/admin/src/pages/proxy/logs/index.tsx

19 lines
434 B
TypeScript
Raw Normal View History

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 (
<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;