import { IconTrash } from "@tabler/icons-react" import { useTranslation } from "react-i18next" import { LogsPanel } from "@/components/logs/logs-panel" import { PageHeader } from "@/components/page-header" import { Button } from "@/components/ui/button" import { useGatewayLogs } from "@/hooks/use-gateway-logs" import { useLogWrapColumns } from "@/hooks/use-log-wrap-columns" export function LogsPage() { const { t } = useTranslation() const { clearLogs, clearing, logs } = useGatewayLogs() const { contentRef, measureRef, wrapColumns } = useLogWrapColumns() return (
{t("pages.logs.clear")} } />
) }