Consider the following component. What is the default color for the star?
const Star = ({ selected = false }) => <Icon color={selected ? 'red' : 'grey'} />;
Consider the following component. What is the default color for the star?
const Star = ({ selected = false }) => <Icon color={selected ? 'red' : 'grey'} />;