UNPKG

211 BJavaScriptView Raw
1/* @flow */
2
3const getRadiumStyleState = function(component: any) {
4 return component._lastRadiumState ||
5 (component.state && component.state._radiumStyleState) || {};
6};
7
8export default getRadiumStyleState;