For example, in one page, I want to use UserStore in MANY Components. Is it okay to use that way?
If components are children of UserComponent, must I declare {...props} in every children?? or is it okay to use duplicate, overlay injection in many children components?
If components are out of UserComponent, is it okay to declare UserStore in many components duplicate?
What is best practice?
<Component1>
<UserComponent> < --- UserStore : get states to props
<Component1 />
<Component2>
<Component3>
<Component4>
<Component5 /> < --- UserStore : get states to props
</Component4>
</Component3>
</UserComponent>
</Component1>
<Component6>
<Component7></Component7> < --- UserStore : get states to props
</Component6>