10 lines
256 B
TypeScript
10 lines
256 B
TypeScript
|
|
import CreateArticleForm from "@/components/form/article/create-article-form";
|
||
|
|
|
||
|
|
export default function CreateArticle() {
|
||
|
|
return (
|
||
|
|
<div className="bg-slate-100 p-3 lg:p-8 dark:!bg-black overflow-y-auto">
|
||
|
|
<CreateArticleForm />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|