в <>wtf<label /></> то все ок
пример
export const Label = React.memo((props: Props) => {
const { text, showEmpty, required, strong, className } = props
if (!text && !showEmpty) return null
return (<>wtf
<label>
{text || <span> </span>}
{required ? <b>*</b> : ''}
</label>
</>)
})
вот так devtools показывает что перерендера нет
А другие теги как?
Обсуждают сегодня