interface Props2 {
id: number | string;
name: string
children: ReactElement;
}
export List = (props: Props2) => {
return <ul>
{React.cloneElement(props.children, {optionId: props.id, optionName: props.name})}
</ul>
}
interface Props2 {
id: number | string;
name: string
children: ReactElement;
}
export List = (props: Props2) => {
return <ul>
{React.cloneElement(props.children, {optionId: props.id, optionName: props.name})}
</ul>
}