UNPKG

react-antd-admin-panel

Version:

Easy prototyping admin panel using React and Antd

14 lines 461 B
import Default from "./Default"; export default class Title extends Default { constructor() { super('Title'); this._level = 1; this._step = false; this._stepDefault = false; } id(id) { this._id = id; return this; } level(level) { this._level = level; return this; } step() { this._step = true; return this; } stepDefault(v) { this._step = v; return this; } } //# sourceMappingURL=Title.js.map