You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having same issue but not able to find where cause the problem...
from the doc
The component finds the state context by looking first via React props, and second via AngularJS DOM data. It then provides the state context to its children using React props.
Component wrapped in UIView here is actually going to copy context then make a stand alone component tree. so after render, parent component(containing UIView) and child component(inside UIView) is not in the same tree and so disconnected. That why isn't work here.
only feed in state config and className(I guess) into component.
Trying to pass custom parameters into a UIView using the render method as suggested here: ui-router/react#26
<UIView render={(Component, props) => <Component {...props} {...someOtherProps} /> } />
seems that render is not actually working when using react-hybrid? is this a known issue
The text was updated successfully, but these errors were encountered: