React small note

1, React Component must start with a capital

In the JSX, the label name is considered to be lowercase HTML tags. However, the lowercase name tag with a small dot (property accessor) is not.

View HTML tags and React assembly .

  • <component />Compiled for React.createElement('component')(html tag)
  • <Component /> Compile React.createElement(Component)
  • <obj.component /> Compile React.createElement(obj.component)

Guess you like

Origin www.cnblogs.com/amiezhang/p/react.html