We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The initial data I set is not accessible in props This does not work:
const initialData = { stableState: 'stableStateA', previousStates: [] } export default withStateMachine(statechart, initialData)(App);
And neither does this:
const initialData = { stableState: 'stableStateA', previousStates: [] } export default withStateMachine(statechart, {initialData})(App);
Background is making a workaround for the not working history state with use of external state.
I cannot spot an error in my code. It works correctly after initial data has been overwritten via the transition
Test can be run via this: Code: https://repl.it/@larsbuch/React-Automata-HistoryTesting-InternalState
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The initial data I set is not accessible in props
This does not work:
And neither does this:
Background is making a workaround for the not working history state with use of external state.
I cannot spot an error in my code. It works correctly after initial data has been overwritten via the transition
Test can be run via this:
Code: https://repl.it/@larsbuch/React-Automata-HistoryTesting-InternalState
The text was updated successfully, but these errors were encountered: