diff options
author | tschicke-brown <tyler_schicke@brown.edu> | 2019-01-20 15:09:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-20 15:09:32 -0500 |
commit | 6cf622dda54e5b1793138c0492d71b574a6e8d75 (patch) | |
tree | 22382a06e682a1d86be144382209fac2183165c9 /src/Main.tsx | |
parent | 957bb8a462d233b8064ad1a957f2525dbd5995bc (diff) | |
parent | 08e2d1fd54824a1e8638a66ff031253ae72ab77b (diff) |
Merge pull request #2 from browngraphicslab/move_doc_get_out_the_way
Move doc get out the way
Diffstat (limited to 'src/Main.tsx')
-rw-r--r-- | src/Main.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Main.tsx b/src/Main.tsx index 3d0cf052f..9ce1dd4e9 100644 --- a/src/Main.tsx +++ b/src/Main.tsx @@ -12,6 +12,7 @@ import { Document } from './fields/Document'; import { configure, runInAction } from 'mobx'; import { NodeStore } from './stores/NodeStore'; import { Documents } from './documents/Documents'; +import { DocumentDecorations } from './DocumentDecorations'; configure({ enforceActions: "observed" @@ -21,6 +22,7 @@ const mainNodeCollection = new NodeCollectionStore(); ReactDOM.render(( <div> <h1>Dash Web</h1> + <DocumentDecorations /> <FreeFormCanvas store={mainNodeCollection} /> </div>), document.getElementById('root')); |