UNPKG

choices.js

Version:

A vanilla JS customisable text input/select box plugin

16 lines (13 loc) 243 B
const general = (state = { loading: false }, action) => { switch (action.type) { case 'LOADING': { return { loading: action.isLoading }; } default: { return state; } } }; export default general;