{
const { t } = useTranslation();
const { api } = useApi();
const { active, chilled } = useMemo(
() => extractChilled(api, nominators, slashingSpans),
[api, nominators, slashingSpans]
);
return (
|
{active && (
)}
{chilled && (
)}
|
);
}
export default React.memo(NominatedBy);