UNPKG

react-antd-admin-panel

Version:

Easy prototyping admin panel using React and Antd

14 lines 366 B
export default class RadioItem { constructor() { } key(v) { this._key = v; return this; } value(v) { this._value = v; return this; } label(v) { this._label = v; return this; } getObject() { return ({ label: this._label, value: this._value, }); } } //# sourceMappingURL=RadioItem.js.map