+ { loadError && { loadError }
}
+ { !loadError && !effects.length && { LocalizeText('generic.loading') || 'Loading…' }
}
+ { !!effects.length &&
+
+ { effects.map(effect =>
+ {
+ const id = parseInt(effect.id, 10);
+ const isSelected = (id === selectedId);
+ return (
+
+ );
+ }) }
+
+ }
+
+