aboutsummaryrefslogtreecommitdiff
path: root/src/views/nodes/TextNodeView.tsx
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-02-01 01:16:51 -0500
committerTyler Schicke <tyler_schicke@brown.edu>2019-02-01 01:16:51 -0500
commit4b1e7b1e71f8dbd7a54e2e2f03fcbf813288bc5c (patch)
treeebab66fcf1008b25202d8d07ea5e9e42c301c878 /src/views/nodes/TextNodeView.tsx
parent2cddac17b405aa85d488f12a0ee5e05ba8698eab (diff)
Deleted unused files and reformatted some files
Diffstat (limited to 'src/views/nodes/TextNodeView.tsx')
-rw-r--r--src/views/nodes/TextNodeView.tsx28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/views/nodes/TextNodeView.tsx b/src/views/nodes/TextNodeView.tsx
deleted file mode 100644
index ab762df12..000000000
--- a/src/views/nodes/TextNodeView.tsx
+++ /dev/null
@@ -1,28 +0,0 @@
-import {observer} from "mobx-react";
-import {StaticTextNodeStore} from "../../stores/StaticTextNodeStore";
-import "./NodeView.scss";
-import {TopBar} from "./TopBar";
-import React = require("react");
-
-interface IProps {
- store: StaticTextNodeStore;
-}
-
-@observer
-export class TextNodeView extends React.Component<IProps> {
-
- render() {
- let store = this.props.store;
- return (
- <div className="node text-node" style={{transform: store.Transform}}>
- <TopBar store={store} />
- <div className="scroll-box">
- <div className="content">
- <h3 className="title">{store.Title}</h3>
- <p className="paragraph">{store.Text}</p>
- </div>
- </div>
- </div>
- );
- }
-} \ No newline at end of file