feat: add history api and page

This commit is contained in:
Kentai Radiquum 2024-07-17 12:58:19 +05:00
parent e73b214045
commit eb620c0b1d
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
5 changed files with 186 additions and 22 deletions
app/history

9
app/history/page.js Normal file
View file

@ -0,0 +1,9 @@
export const metadata = {
title: "История",
};
import { HistoryPage } from "@/app/pages/History";
export default function Index() {
return <HistoryPage />;
}