14 lines
238 B
JavaScript
14 lines
238 B
JavaScript
|
import React from 'react';
|
||
|
import VideoPlayer from "../components/VideoPlayer";
|
||
|
|
||
|
class Video extends React.Component {
|
||
|
|
||
|
render() {
|
||
|
return (
|
||
|
<section>
|
||
|
<VideoPlayer/>
|
||
|
</section>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
export default (Video);
|