📌  相关文章
📜  类型上不存在属性“状态” - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:28.291000             🧑  作者: Mango

代码示例1
Can be multiple reasons. Main ones are missing @types/react in Dependencies

try typing this in the terminal (make sure it's the terminal of the right 
folder):

npm install --save-dev @types/react @types/react-dom

--------------------------------------------------------------------------------