Reputation: 6978
What's the correct value to replace the question marks with and why?
RecentProjectsSection.propTypes = {
onClose: React.PropTypes.func.isRequired,
projects: React.PropTypes.array.isRequired,
};
RecentProjectsSection.defaultProps = {
onClose: ?????
projects: [],
};
Upvotes: 13
Views: 13954
Reputation: 20037
You need a function, what it does - up to you.
RecentProjectsSection.defaultProps = {
onClose: () => {
// your logic here...
return;
}
projects: [],
};
Upvotes: 19