AniX/app/history/page.tsx

11 lines
207 B
TypeScript

export const metadata = {
title: "История",
};
import { HistoryPage } from "#/pages/History";
export const dynamic = "force-static";
export default function Index() {
return <HistoryPage />;
}