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