diff options
| author | alinayejin <alina_kim@brown.edu> | 2023-12-05 13:34:04 -0500 |
|---|---|---|
| committer | alinayejin <alina_kim@brown.edu> | 2023-12-05 13:34:04 -0500 |
| commit | 304f7e25fb2a533876a59bca7215126d02d94dbf (patch) | |
| tree | 0804727991f75c71e655879d3356f23bbca484d2 /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | |
| parent | 412e4aa10e0fab8a949c78e851efdc68661dd522 (diff) | |
new collection freeform info ui
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index cf07d070d..499e0d284 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -51,6 +51,7 @@ import { CollectionFreeFormRemoteCursors } from './CollectionFreeFormRemoteCurso import './CollectionFreeFormView.scss'; import { MarqueeView } from './MarqueeView'; import React = require('react'); +import { CollectionFreeFormInfoUI } from './CollectionFreeFormInfoUI'; export type collectionFreeformViewProps = { NativeWidth?: () => number; @@ -1429,6 +1430,10 @@ export class CollectionFreeFormView extends CollectionSubView<Partial<collection return anchor; }; + infoUI = () => { + return <CollectionFreeFormInfoUI Document={this.Document} Freeform={this}></CollectionFreeFormInfoUI>; + }; // this.props.PanelWidth(), this.props.PanelHeight() + componentDidMount() { this.props.setContentView?.(this); super.componentDidMount?.(); |
