const CanCreatePost = ({user, children}) => { if (!user){ return
Please log in.
; } else if (Users.can.post(user)) { return children; } else { returnSorry, you do not have permissions to post at this time
; } }; CanCreatePost.propTypes = { user: React.PropTypes.object } module.exports = CanCreatePost;