1
たとえば、コンテナ<ContainerName data=someData>
があり、いくつかの小道具データを渡します。リアクロックパス小道具
const enhance = compose(
withProps({
statuses: ['ordered', 'received'],
}),
withProps(
// how do I pass props from this container to component ?
),
withState('error', 'setError', false),
withState('successAdded', 'setSuccessAdded', false),
withState('loading', 'setLoading', false),
withState('confirmModal', 'setConfirmModal', false),
...
export default enhance(ComponentForm);
私たちは私たちのコンポーネントにこのコンテナに属している小道具を渡すにはどうすればよい:我々は再構成し、次のコードを持って使用して、このコンテナで
?