Archived
54 lines
688 B
JavaScript
54 lines
688 B
JavaScript
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; |