Conditional rendering in ReactJS
Conditional rendering is a term to describe the ability to render different user interface (UI) markup if a condition is true or false.
Example :
{courseGoals.length > 0
&&
( <CourseGoalList items={courseGoals} />) }
if the first condition is tru...
omarsaade.hashnode.dev1 min read