diff options
author | madelinegr <mgriswold99@gmail.com> | 2019-02-12 19:25:28 -0500 |
---|---|---|
committer | madelinegr <mgriswold99@gmail.com> | 2019-02-12 19:25:28 -0500 |
commit | 837509322d7e556830c57653828e223b06eb38a6 (patch) | |
tree | 0af1076c9535ba6cd912d331ec61bcef951563bb /src/views/nodes/TextNodeView.tsx | |
parent | 1d667d19f5402dc9f9069e0a57008dac96f6de2a (diff) |
fixed bugs with launching
Diffstat (limited to 'src/views/nodes/TextNodeView.tsx')
-rw-r--r-- | src/views/nodes/TextNodeView.tsx | 28 |
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 4831e658c..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 |