UNPKG

dash-renderer

Version:

render dash components in react

17 lines (16 loc) 374 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAppState = getAppState; function getAppState(state) { var stateList = { STARTED: 'STARTED', HYDRATED: 'HYDRATED', DESTROYED: 'DESTROYED' }; if (stateList[state]) { return stateList[state]; } throw new Error("".concat(state, " is not a valid app state.")); }