diff options
author | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-07-12 17:25:42 -0400 |
---|---|---|
committer | Naafiyan Ahmed <naafiyan@gmail.com> | 2022-07-12 17:25:42 -0400 |
commit | 90a4aace3a5701c0332e180b5bd1119dd38ec52c (patch) | |
tree | ba19973598f6f3e85cae924731f407a85bc77759 /src/client/views/nodes/DataViz.tsx | |
parent | d168c6992add36e5ca6e717f440675cbb49e71d8 (diff) |
stuck on linking
Diffstat (limited to 'src/client/views/nodes/DataViz.tsx')
-rw-r--r-- | src/client/views/nodes/DataViz.tsx | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/client/views/nodes/DataViz.tsx b/src/client/views/nodes/DataViz.tsx deleted file mode 100644 index df4c8f937..000000000 --- a/src/client/views/nodes/DataViz.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import { observer } from 'mobx-react'; -import * as React from 'react'; -import { ViewBoxBaseComponent } from '../DocComponent'; -import './DataViz.scss'; -import { FieldView, FieldViewProps } from './FieldView'; - -@observer -export class DataVizBox extends ViewBoxBaseComponent<FieldViewProps>() { - public static LayoutString(fieldKey: string) { - return FieldView.LayoutString(DataVizBox, fieldKey); - } - - render() { - return ( - <div> - <div>Hi</div> - </div> - ); - } -} |