15 lines
207 B
JavaScript
15 lines
207 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
class VideoPlayer extends React.Component {
|
||
|
render() {
|
||
|
|
||
|
return (
|
||
|
<section>
|
||
|
<video>
|
||
|
</video>
|
||
|
</section>
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default (VideoPlayer);
|