Skip to content

Instantly share code, notes, and snippets.

View paulewetzel's full-sized avatar

Paul Wetzel paulewetzel

  • Quantum Gate Systems
View GitHub Profile
@paulewetzel
paulewetzel / useDataLoader.js
Last active March 31, 2021 22:51
Manage data loading, load phase tracking and data refreshing in React functional components
/*
USAGE:
-> to load your data and manage loading phases
const { loadState, data, refreshData, loadStates } = useDataLoader(
api.fetchWhatever,
args
);