UNPKG

react-promise-tracker

Version:

Simple React Promise tracker Hook/HOC helper to add loading spinner indicators

10 lines (9 loc) 352 B
import { defaultArea } from "./constants"; export const defaultConfig = { area: defaultArea, delay: 0 }; // Defensive config setup, fulfill default values export const setupConfig = outerConfig => ({ area: !outerConfig || !outerConfig.area ? defaultArea : outerConfig.area, delay: !outerConfig || !outerConfig.delay ? 0 : outerConfig.delay });