2017-06-10 50 views
0

我跟隨Cory House的在ES6中使用React和Redux構建應用程序當然還有Pluralsight。像他那樣的講座,不知道爲什麼,當我創建應用程序佈局則出現下列錯誤我所做的一切都是完全一樣的:導入React,從'react'導致的{PropTypes}導致Uncaught TypeError:超級表達式必須爲null或函數,而不是undefined

a screenshot of the error occured in the console

誰能給我一個關於這個強權的原因提示請問發生?非常感謝!

+0

的可能的複製([反應不能設置的不確定道具的屬性] https://stackoverflow.com/questions/43061769/react-不能設置屬性的道具的不明確) –

回答

3

你必須寫

class App extends React.Component 

class App extends React.Component() 
+0

哦,傻了!感謝您指出! –

相關問題