blob: 809ac4aa43fc375cc5b15a4c1a342f4d6f7069c0 (
plain) (
blame)
1
2
3
4
5
6
|
import { cloneElement } from 'react';
const ClonedWithProps = (element) => (props) =>
cloneElement(element, props);
export default ClonedWithProps(<div id="cloned">Cloned With Props</div>);
|