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