5 lines
122 B
TypeScript
5 lines
122 B
TypeScript
|
|
export default function EditGeneratedArticle(props: { id: string }) {
|
||
|
|
const { id } = props;
|
||
|
|
return <div>{id}</div>;
|
||
|
|
}
|