feat: add state to inputs for create new collection page

This commit is contained in:
Kentai Radiquum 2024-08-15 14:06:42 +05:00
parent b46dc367cb
commit 2e64548f7a
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
4 changed files with 231 additions and 4 deletions

View 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 />;
}