2025-01-17 05:23:28 +00:00
|
|
|
import CreateArticleForm from "@/components/form/article/create-article-form";
|
2024-12-23 17:29:21 +00:00
|
|
|
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() {
|
2024-12-23 17:29:21 +00:00
|
|
|
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">
|
2025-01-17 05:23:28 +00:00
|
|
|
{/* <FormArticle /> */}
|
|
|
|
|
<CreateArticleForm />
|
|
|
|
|
</div>
|
2024-12-23 17:29:21 +00:00
|
|
|
);
|
2024-04-19 13:26:27 +00:00
|
|
|
}
|