mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-30 18:09:40 +05:00
feat: add state to inputs for create new collection page
This commit is contained in:
parent
b46dc367cb
commit
2e64548f7a
4 changed files with 231 additions and 4 deletions
18
app/collections/create/page.tsx
Normal file
18
app/collections/create/page.tsx
Normal file
|
@ -0,0 +1,18 @@
|
|||
import { CreateCollectionPage } from "#/pages/CreateCollection";
|
||||
import dynamic from "next/dynamic";
|
||||
|
||||
export const metadata = {
|
||||
title: "Создание коллекции",
|
||||
description: "Создание новой коллекции",
|
||||
};
|
||||
|
||||
const CreateCollectionDynamic = dynamic(
|
||||
() => Promise.resolve(CreateCollectionPage),
|
||||
{
|
||||
ssr: false,
|
||||
}
|
||||
);
|
||||
|
||||
export default function Collections() {
|
||||
return <CreateCollectionDynamic />;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue