diff options
author | yipstanley <stanley_yip@brown.edu> | 2019-01-18 20:28:53 -0500 |
---|---|---|
committer | yipstanley <stanley_yip@brown.edu> | 2019-01-18 20:28:53 -0500 |
commit | 4d2bd0796c839b25ed9b96319957d02fbe452aca (patch) | |
tree | 6444155dd2c6bc13ed372301f5108b76e6bceaa9 /src/Main.tsx | |
parent | 8b7b321b934e6520eac2c7d4e2ea8fd6f9cf0089 (diff) |
yuck
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 604e443cf..461ee637a 100644 --- a/src/Main.tsx +++ b/src/Main.tsx @@ -11,6 +11,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" @@ -20,6 +21,7 @@ const mainNodeCollection = new NodeCollectionStore(); ReactDOM.render(( <div> <h1>Dash Web</h1> + <DocumentDecorations /> <FreeFormCanvas store={mainNodeCollection} /> </div>), document.getElementById('root')); |