blob: d925cc32c073297ea0715d092f134dc61c74efcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
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>
);
}
}
|