道具类型失败:不支持道具“children”。请删除它
Failed prop type: The prop `children` is not supported. Please remove it
我在我的项目中第一次使用 Material UI 选项卡,一切正常,但 运行 项目时控制台出现错误
here is what i get in console
and here is an example of the code where I use Tabs
谁能帮帮我吗?谢谢
检查 Tab
必须是自闭元素,这就是它抛出警告的原因,因为您使用它来传递 h4
,您应该使用 props 而不是将显式子项传递给这些组件。
我在我的项目中第一次使用 Material UI 选项卡,一切正常,但 运行 项目时控制台出现错误 here is what i get in console and here is an example of the code where I use Tabs 谁能帮帮我吗?谢谢
检查 Tab
必须是自闭元素,这就是它抛出警告的原因,因为您使用它来传递 h4
,您应该使用 props 而不是将显式子项传递给这些组件。