2024-12-23 17:29:21 +00:00
|
|
|
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() {
|
2024-12-23 17:29:21 +00:00
|
|
|
return (
|
|
|
|
|
<Card className="h-[96vh] rounded-md border bg-transparent">
|
|
|
|
|
<FormArticle />
|
|
|
|
|
</Card>
|
|
|
|
|
);
|
2024-04-19 13:26:27 +00:00
|
|
|
}
|