diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-29 11:25:28 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-29 11:25:28 -0400 |
commit | e9e58ea66ad1c8e6390c6a83057f8eb97cef122f (patch) | |
tree | 4c76e96ac2165d17bc5a1f3c7157762d2cd9ff17 /src/client/views/graph/Graph.tsx | |
parent | a98ed068ac96957b872928dab0d19327e38b31d4 (diff) |
removed graph code
Diffstat (limited to 'src/client/views/graph/Graph.tsx')
-rw-r--r-- | src/client/views/graph/Graph.tsx | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/client/views/graph/Graph.tsx b/src/client/views/graph/Graph.tsx deleted file mode 100644 index d925cc32c..000000000 --- a/src/client/views/graph/Graph.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import * as React from "react"; -import {observable} from "mobx"; -import { observer } from "mobx-react"; -import { Document, listSpec } from "../../../new_fields/Schema"; -import { CollectionFreeFormView } from "../collections/collectionFreeForm/CollectionFreeFormView"; -import { CollectionSubView, CollectionViewProps, SubCollectionViewProps } from "../collections/CollectionSubView"; - - - - -export class Graph extends CollectionSubView(Document) { - static Instance:Graph; - - private constructor(props:SubCollectionViewProps) { - super(props); - Graph.Instance = this; - } - - - - - render() { - let collection = <CollectionFreeFormView {...this.props}/>; - - return ( - <div> - </div> - - ); - } - -}
\ No newline at end of file |