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
+54
View File
@@ -0,0 +1,54 @@
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import Random from './reccomenders/Random';
import Related from './reccomenders/Related';
// and so on..
class Suggestion extends Component {
constructor(props) {
super(props);
}
componentWillMount() {
}
componentDidMount() {
}
componentWillReceiveProps(nextProps) {
}
shouldComponentUpdate(nextProps, nextState) {
}
componentWillUpdate(nextProps, nextState) {
}
componentDidUpdate(prevProps, prevState) {
}
componentWillUnmount() {
}
render() {
return (
<div>
</div>
);
}
}
Suggestion.propTypes = {
};
export default Suggestion;