react-antd-admin-panel
Version:
Easy prototyping admin panel using React and Antd
14 lines • 579 B
JavaScript
import Default from "./Default";
export default class Conditions extends Default {
constructor() {
super('Conditions');
// This removes all sections - no idea why anyone would do that.
// Maybe to remove the condition functionality? To disable it?
this.clear = () => { };
// Get the current value used for the condition
this.getValue = () => { };
// Push a new value to the condition and change the section accordingly
this.checkCondition = () => { };
}
}
//# sourceMappingURL=Conditions.js.map