UNPKG

@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.

20 lines (19 loc) 312 B
const reducer = (state, action) => { switch (action.type) { case "setValue": { const { value } = action; return { ...state, value }; } default: throw new Error("invalid action"); } }; export { reducer }; //# sourceMappingURL=reducer.js.map