create a video container, component static defaults.

This commit is contained in:
Ahmed-Ayman 2018-12-07 19:02:27 +02:00
parent 461ed1af37
commit d36d4e6c6e
2 changed files with 17 additions and 0 deletions

View File

@ -5,8 +5,11 @@ class VideoPlayer extends React.Component {
return (
<section>
<h2>Title</h2>
<video>
</video>
<h3>date mm/dd/yy </h3>
<p>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.</p>
</section>
)
}

14
src/containers/Video.js Normal file
View File

@ -0,0 +1,14 @@
import React from 'react';
import VideoPlayer from "../components/VideoPlayer";
class Video extends React.Component {
render() {
return (
<section>
<VideoPlayer/>
</section>
);
}
}
export default (Video);