diff options
author | sotech117 <michael_foiani@brown.edu> | 2023-04-13 05:39:21 -0400 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2023-04-13 05:39:21 -0400 |
commit | 3c8cb517c811f94dce1e3d8430e07af316642365 (patch) | |
tree | 2d93f68507ededed70190c32682e8ecebbda74cb /src/client/views/Main.tsx | |
parent | 5d1e3710a015d8915bd367ece753817d84d9d916 (diff) |
Compile and make compatible all the scattered code I had for empowering trails for dash meeting. Still much to do with ui, but basic functionaltiy is there. Two key things, 1) navigation for branching trails, and 2) ability to runSubroutines on tested trails.
Diffstat (limited to 'src/client/views/Main.tsx')
-rw-r--r-- | src/client/views/Main.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/Main.tsx b/src/client/views/Main.tsx index 6b18caed0..1aeb93d42 100644 --- a/src/client/views/Main.tsx +++ b/src/client/views/Main.tsx @@ -15,6 +15,7 @@ import { TrackMovements } from '../util/TrackMovements'; import { CollectionView } from './collections/CollectionView'; import { MainView } from './MainView'; import * as dotenv from 'dotenv'; // see https://github.com/motdotla/dotenv#how-do-i-use-dotenv-with-import +import { BranchingTrailManager } from '../util/BranchingTrailManager'; dotenv.config(); AssignAllExtensions(); @@ -48,6 +49,7 @@ FieldLoader.ServerLoadStatus = { requested: 0, retrieved: 0 }; // bcz: not sure new LinkManager(); new TrackMovements(); new ReplayMovements(); + new BranchingTrailManager(); root.render(<MainView />); }, 0); })(); |