我使用的是 material-ui v3.5.1
我想让 ListItem 像这样使用 Link 组件:
<ListItem component={Link} to="/some/path">
<ListItemText primary="Text" />
</ListItem>
但是 Typescript 给我带来了一条冗长的错误消息(VSCode 中突出显示了“组件”这个词),在底部它说:
The type "typeof Link" cannot be assigned to the type "ComponentClass<ListItemProps, any>"
Property 'to' is missing in type 'ListItemProps' but required in type 'Readonly'. [2322]
有没有办法让这些东西与 Typescript 一起工作?
谢谢!