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
successfully creating a mimicked fiber tree structure rendered in new accessibility react tab. Next just have to form the connectiong to our accessibility tree instead
snapshot,// from 'tabs[currentTab]' object in 'MainContainer'
40
+
snapshots,// from 'tabs[currentTab].snapshotDisplay' object in 'MainContainer'
41
+
currLocation,// from 'tabs[currentTab]' object in 'MainContainer'
42
+
}=props;
43
+
44
+
constdispatch=useDispatch();
45
+
46
+
useEffect(()=>{
47
+
dispatch(setCurrentTabInApp('AxTree'));// dispatch sent at initial page load allowing changing "immer's" draft.currentTabInApp to 'tree' to facilitate render.
48
+
},[]);
49
+
// const json = {
50
+
// array: [1, 2, 3],
51
+
// bool: true,
52
+
// object: {
53
+
// foo: 'bar',
54
+
// },
55
+
// };
56
+
57
+
//removing/adding snapshot at beginning of return statement didn't change anything
0 commit comments