我在使用reactjs时有一个问题。
->这样在reactjs中有问题吗?
class A extends Component{
.....
render() {
const detail = (
<B
contents={[
{
title: <div style={{ wordBreak: 'keep-all' }}>foo</div>,
child: (
<div style={{ display: 'flex', alignItems: 'center' }}>
<div style={{ marginRight: '-10px' }}>
....
})
)
return(
<C
detailCompo={detail}
/>
);
}
}
// in C component
class C extends Component {
....
render() {
return(
{this.props.detailCompo}
);
}
}