web-humas-fe/app/(admin)/admin/article/create/page.tsx

11 lines
260 B
TypeScript
Raw Normal View History

import FormArticle from "@/components/form/form-article";
import { Card } from "@nextui-org/react";
2024-04-19 13:26:27 +00:00
export default function CreateArticle() {
return (
<Card className="h-[96vh] rounded-md border bg-transparent">
<FormArticle />
</Card>
);
2024-04-19 13:26:27 +00:00
}