是否可以将Material UI与无状态组件一起使用,或者说是一种要求?
我打算实施Popovers,而我从官方code example收集的是它的国家依赖。
答案 0 :(得分:1)
这取决于Material UI组件。
有些是理想的,并且被推荐为无状态组件。实际上,Material UI文档中的许多示例都使用无状态组件。例如,<Badge />
组件:
const BadgeExampleSimple = () => (
<div>
<Badge
badgeContent={4}
primary={true}
>
<NotificationsIcon />
</Badge>
<Badge
badgeContent={10}
secondary={true}
badgeStyle={{top: 12, right: 12}}
>
<IconButton tooltip="Notifications">
<NotificationsIcon />
</IconButton>
</Badge>
</div>
);
或<Icon />
:
const HomeIcon = (props) => (
<SvgIcon {...props}>
<path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z" />
</SvgIcon>
);
其他组件要求它们具有状态以管理open
等状态。
遗憾的是<Popover />
组件就是这种情况。
export default class PopoverExampleSimple extends React.Component {
constructor(props) {
super(props);
this.state = {
open: false,
};
}
...
}
所以,回答你的问题: