UNPKG

dash-renderer

Version:

render dash components in react

11 lines (9 loc) 303 B
/* global document:true */ import {ACTIONS} from '../actions/constants'; export default function config (state = null, action) { if (action.type === ACTIONS('READ_CONFIG')) { return JSON.parse(document.getElementById('_dash-config').textContent); } else { return state; } }