aboutsummaryrefslogtreecommitdiff
path: root/src/views/nodes/VideoNodeView.tsx
diff options
context:
space:
mode:
authormadelinegr <mgriswold99@gmail.com>2019-02-12 19:25:28 -0500
committermadelinegr <mgriswold99@gmail.com>2019-02-12 19:25:28 -0500
commit837509322d7e556830c57653828e223b06eb38a6 (patch)
tree0af1076c9535ba6cd912d331ec61bcef951563bb /src/views/nodes/VideoNodeView.tsx
parent1d667d19f5402dc9f9069e0a57008dac96f6de2a (diff)
fixed bugs with launching
Diffstat (limited to 'src/views/nodes/VideoNodeView.tsx')
-rw-r--r--src/views/nodes/VideoNodeView.tsx29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/views/nodes/VideoNodeView.tsx b/src/views/nodes/VideoNodeView.tsx
deleted file mode 100644
index 0a7b3d174..000000000
--- a/src/views/nodes/VideoNodeView.tsx
+++ /dev/null
@@ -1,29 +0,0 @@
-import { observer } from "mobx-react";
-import { VideoNodeStore } from "../../stores/VideoNodeStore";
-import "./NodeView.scss";
-import { TopBar } from "./TopBar";
-import "./VideoNodeView.scss";
-import React = require("react");
-
-interface IProps {
- store: VideoNodeStore;
-}
-
-@observer
-export class VideoNodeView 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>
- <video src={store.Url} controls />
- </div>
- </div>
- </div>
- );
- }
-} \ No newline at end of file