import { UsePaginationQueryResult } from "@/apis/queries/hooks"; import { Container, Row } from "react-bootstrap"; import { Helmet } from "react-helmet"; import { Column } from "react-table"; import { QueryPageTable } from ".."; interface Props { name: string; query: UsePaginationQueryResult; columns: Column[]; } function HistoryView({ columns, name, query, }: Props) { return ( {name} History - Bazarr ); } export default HistoryView;