我是新手:react遇到問題:Imported JSX component Test_hello must be in PascalCase or SCREAMING_SNAKE_CASE

在學習react的過程中,有一次出現警告:Imported JSX component Test_hello must be in PascalCase or SCREAMING_SNAKE_CASE 

這是因為我的命名沒有依react建議的駝峰格式所出現的警告,所以我把組件Test_hello改為TestHello就可以了,記得第一個字母需要大寫。