12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
|
|
import EditArticleForm from "@/components/form/article/edit-article-form";
|
||
|
|
|
||
|
|
export default function DetailArticlePage() {
|
||
|
|
return (
|
||
|
|
<div className="">
|
||
|
|
<div className="h-[96vh] p-3 lg:p-8 bg-slate-100 dark:!bg-black overflow-y-auto">
|
||
|
|
<EditArticleForm isDetail={true} />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|