I\'m new to react and i was learning subclasses from one of Lynda examples. I\'m creating a new subcomponent class called aptList and using this.props.eac
aptList
this.props.eac
Rename aptList to AptList.
AptList
Otherwise React considers aptList to be a native html component and will trigger warnings for unknown HTML properties.
See the link in the exception message:
You are using a React component without an upper case. React interprets it as a DOM tag because ...