当我想从react-sidenav显示我的导航时出现错误: 错误堆栈跟踪:https://hastebin.com/isiguweces.php
我的班级Navig.js,其中包含我的导航:https://hastebin.com/kanotegido.xml
我的App.js在哪里使用:https://hastebin.com/xiyikatice.scala
答案 0 :(得分:2)
问题是props$icon
是undefined
(名为user
而不是userCircle
)。
更改
import { user } from 'react-icons-kit/fa/userCircle';
到
import { userCircle } from 'react-icons-kit/fa/userCircle';
解决您的问题。