2025-01-17 10:23:54 +00:00
|
|
|
import EditArticleForm from "@/components/form/article/edit-article-form";
|
2024-04-24 04:14:06 +00:00
|
|
|
|
|
|
|
|
export default function UpdateArticlePage() {
|
2025-01-17 10:23:54 +00:00
|
|
|
return (
|
2025-01-30 11:34:29 +00:00
|
|
|
<div className="h-[96vh] bg-transparent p-3 lg:p-8 !bg-slate-100 dark:!bg-black overflow-y-auto">
|
2025-01-17 10:23:54 +00:00
|
|
|
<EditArticleForm isDetail={false} />
|
|
|
|
|
</div>
|
|
|
|
|
);
|
2024-04-24 04:14:06 +00:00
|
|
|
}
|