UNPKG

@yandex/ui

Version:

Yandex UI components

13 lines (12 loc) 599 B
import { Registry } from '@bem-react/di'; import { cnRadioButton } from '../RadioButton'; import { RadioButtonContent } from '../Content/RadioButton-Content'; import { RadioButtonControl } from '../Control/RadioButton-Control'; import { RadioButtonPlate } from '../Plate/RadioButton-Plate'; import { RadioButtonRadio } from '../Radio/RadioButton-Radio'; export var radioButtonRegistry = new Registry({ id: cnRadioButton() }); radioButtonRegistry .set('Content', RadioButtonContent) .set('Control', RadioButtonControl) .set('Plate', RadioButtonPlate) .set('Radio', RadioButtonRadio);