showing results for - "react component name convention"
Dewey
03 Sep 2017
1Note: Always start component names with a capital letter.
2
3React treats components starting with lowercase letters as DOM tags.
4For example, <div /> represents an HTML div tag, but <Welcome /> represents a component and requires Welcome to be in scope.
5