This commit is contained in:
matteo
2018-11-08 18:22:06 +01:00
parent 48c5e036b0
commit 715831a780
6 changed files with 207 additions and 1 deletions
+51
View File
@@ -0,0 +1,51 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
class VideoInfo extends Component {
constructor(props) {
super(props);
}
componentWillMount() {
}
componentDidMount() {
}
componentWillReceiveProps(nextProps) {
}
shouldComponentUpdate(nextProps, nextState) {
}
componentWillUpdate(nextProps, nextState) {
}
componentDidUpdate(prevProps, prevState) {
}
componentWillUnmount() {
}
render() {
return (
<div>
</div>
);
}
}
VideoInfo.propTypes = {
};
export default VideoInfo;