15 lines
427 B
TypeScript
15 lines
427 B
TypeScript
|
|
"use client";
|
||
|
|
import EditGeneratedArticle from "@/components/form/article/edit-generated-article";
|
||
|
|
import { Card } from "@nextui-org/react";
|
||
|
|
import { useParams } from "next/navigation";
|
||
|
|
|
||
|
|
export default function EditGeneratedArticlePage() {
|
||
|
|
const params = useParams();
|
||
|
|
const id = String(params.id);
|
||
|
|
return (
|
||
|
|
<Card className="rounded-md border bg-transparent">
|
||
|
|
<EditGeneratedArticle id={id} />
|
||
|
|
</Card>
|
||
|
|
);
|
||
|
|
}
|