import { usePageHistoryQuery } from "@/features/page-history/queries/page-history-query"; import { HistoryEditor } from "@/features/page-history/components/history-editor"; import { useTranslation } from "react-i18next"; interface HistoryProps { historyId: string; } function HistoryView({ historyId }: HistoryProps) { const { t } = useTranslation(); const { data, isLoading, isError } = usePageHistoryQuery(historyId); if (isLoading) { return <>>; } if (isError || !data) { return