This PR fixes the club rendering in the case that there are no members, no book or no assignments. Currently, as short circuiting uses clauses like this.state.members.length && <____>, in the case that there were no members/assignments/book it would render a "0". This PR changes this behavior so it outputs useful text instead.
This PR fixes the club rendering in the case that there are no members, no book or no assignments. Currently, as short circuiting uses clauses like
this.state.members.length && <____>
, in the case that there were no members/assignments/book it would render a "0". This PR changes this behavior so it outputs useful text instead.