react-antd-admin-panel
Version:
Easy prototyping admin panel using React and Antd
14 lines • 516 B
JavaScript
import Default from "./Default";
export default class Slider extends Default {
constructor() {
super('Slider');
this._min = 0;
this._max = 0;
}
min(min) { this._min = min; return this; }
max(max) { this._max = max; return this; }
marks(marks) { this._marks = marks; return this; }
range(range) { this._range = range; return this; }
labelFunction(labelFunction) { this._labelFunction = labelFunction; return this; }
}
//# sourceMappingURL=Slider.js.map