@airplane/views
Version:
A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.
19 lines (18 loc) • 328 B
JavaScript
const emptyFn = () => {
};
const DefaultBooleanState = {
value: void 0,
setValue: emptyFn,
checked: false,
setChecked: emptyFn,
disabled: false,
setDisabled: emptyFn,
errors: [],
showErrors: false,
setShowErrors: emptyFn,
reset: emptyFn
};
export {
DefaultBooleanState
};
//# sourceMappingURL=state.js.map