web-humas-fe/app/(admin)/admin/article/create/page.tsx

13 lines
398 B
TypeScript
Raw Normal View History

import CreateArticleForm from "@/components/form/article/create-article-form";
import FormArticle from "@/components/form/form-article";
2025-02-13 09:15:38 +00:00
import { Card } from "@heroui/react";
2024-04-19 13:26:27 +00:00
export default function CreateArticle() {
return (
2025-01-30 11:34:29 +00:00
<div className="bg-transparent p-3 lg:p-8 !bg-slate-100 dark:!bg-black overflow-y-auto">
{/* <FormArticle /> */}
<CreateArticleForm />
</div>
);
2024-04-19 13:26:27 +00:00
}