From e55ecfeacb71937767499b9e1988d3eaf1176dfa Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Thu, 26 Nov 2015 15:20:57 +0000 Subject: [PATCH] Add VideoFeed component --- src/components/views/voip/VideoFeed.js | 31 ++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/components/views/voip/VideoFeed.js diff --git a/src/components/views/voip/VideoFeed.js b/src/components/views/voip/VideoFeed.js new file mode 100644 index 0000000000..9cf28d1ba4 --- /dev/null +++ b/src/components/views/voip/VideoFeed.js @@ -0,0 +1,31 @@ +/* +Copyright 2015 OpenMarket Ltd + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + +'use strict'; + +var React = require('react'); + +module.exports = React.createClass({ + displayName: 'VideoFeed', + + render: function() { + return ( + + ); + }, +}); +