mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
10 lines
286 B
TypeScript
10 lines
286 B
TypeScript
import { CreateCollectionPage } from "#/pages/CreateCollection";
|
|
|
|
export const metadata = {
|
|
title: "Создание коллекции",
|
|
description: "Создание новой коллекции",
|
|
};
|
|
|
|
export default function Collections() {
|
|
return <CreateCollectionPage />;
|
|
}
|