From d36d4e6c6eada4afc2c9d0bdffa79aca147c0f11 Mon Sep 17 00:00:00 2001 From: Ahmed-Ayman Date: Fri, 7 Dec 2018 19:02:27 +0200 Subject: [PATCH] create a video container, component static defaults. --- src/components/VideoPlayer.js | 3 +++ src/containers/Video.js | 14 ++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 src/containers/Video.js diff --git a/src/components/VideoPlayer.js b/src/components/VideoPlayer.js index 2310156..50aff4a 100644 --- a/src/components/VideoPlayer.js +++ b/src/components/VideoPlayer.js @@ -5,8 +5,11 @@ class VideoPlayer extends React.Component { return (
+

Title

+

date mm/dd/yy

+

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

) } diff --git a/src/containers/Video.js b/src/containers/Video.js new file mode 100644 index 0000000..a426b70 --- /dev/null +++ b/src/containers/Video.js @@ -0,0 +1,14 @@ +import React from 'react'; +import VideoPlayer from "../components/VideoPlayer"; + +class Video extends React.Component { + + render() { + return ( +
+ +
+ ); + } +} +export default (Video); \ No newline at end of file