私は持っている:
const section = cloneElement(this.props.children, {
className: this.props.styles.section,
...this.props,
});
内部this.props
にはstyles
、複製された要素に渡したくないプロパティがあります。
どのようにできるのか?
私は持っている:
const section = cloneElement(this.props.children, {
className: this.props.styles.section,
...this.props,
});
内部this.props
にはstyles
、複製された要素に渡したくないプロパティがあります。
どのようにできるのか?