@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.
18 lines (17 loc) • 309 B
JavaScript
const emptyFn = () => {
};
const DefaultTextInputState = {
value: void 0,
setValue: emptyFn,
disabled: false,
setDisabled: emptyFn,
focus: emptyFn,
errors: [],
showErrors: false,
setShowErrors: emptyFn,
reset: emptyFn
};
export {
DefaultTextInputState
};
//# sourceMappingURL=state.js.map