EO
emit(shape, property, value)
Size: a a a
EO
EO
emit(shape, property, value)
N
S
Application is crashed: Entity metadata for TargetAudience#campaign was not found. Check if you specified a correct entity object and if it's connected in the connection options.
S
Application is crashed: Entity metadata for TargetAudience#campaign was not found. Check if you specified a correct entity object and if it's connected in the connection options.
ЗП
emit(shape, property, value)
EO
SV
SV
SV
export { Class1, Class2, Class3, Class4 };
SV
SV
SV
OR
type AllowedGraphics =я делаю массив такого вида
| 'one'
| 'two'
| 'three';
const allowedGraphics: AllowedGraphics[] = ['one', 'two', 'three'];
type ButtonGroupProps<T> = {как мне это лучше протипизировать?
values: T[],
value: T
onChange: (newValue: T, e: React.MouseEvent<HTMLElement>) => void,
};
export const ButtonGroup = <T extends string>({
values, value, onChange,
allowFewValues = false, isAlwaysExist = false,
}: ButtonGroupProps<T>) => {
const classes = useStyles();
const onChangeLocal = (e: React.MouseEvent<HTMLElement>, newValue: T) => {
if (!newValue && isAlwaysExist) return;
onChange(newValue, e);
};
OR
OR
p
SV
SV