FC Design Pattern/Conventions
destructure props
in Function Signature of FC
set Parameter Default Value for omitted attributes in FC
!convention to order props
with default values at end of list
Pass-Through Property
use Spread Operator to assign props
inside JSX element
!snippet spread attributes must be inside curly braces!
<a href="/blog/" {...extraProps} /\>
use pass-through properties to simplify FC signature