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
Currently we do something like this to fake it in a custom Action:
constructor(child1, child2) {
super();
this.child1 = child1;
this.child2 = child2;
// TODO: this is a hack to render the tree
// Implement getChildren() method in Blueshell
this.children = [child1, child2];
}
The onEvent(state, event) method doesn't use any of the existing child-handling support to decide which child to call.
The text was updated successfully, but these errors were encountered:
Currently we do something like this to fake it in a custom Action:
The
onEvent(state, event)
method doesn't use any of the existing child-handling support to decide which child to call.The text was updated successfully, but these errors were encountered: