export default function EditGeneratedArticle(props: { id: string }) {
const { id } = props;
return <div>{id}</div>;
}