如何测试使用片段和道具但不使用标记的功能组件,我无法设置角色。
const Item = (props: ItemProps) => (
<React.Fragment>
{ props.content }
</React.Fragment>
);
如何测试使用片段和道具但不使用标记的功能组件,我无法设置角色。
const Item = (props: ItemProps) => (
<React.Fragment>
{ props.content }
</React.Fragment>
);