Skip to content

Instantly share code, notes, and snippets.

View guimochila's full-sized avatar
🎯
Focusing

Guilherme guimochila

🎯
Focusing
View GitHub Profile
@guimochila
guimochila / providerCompose.js
Created October 21, 2019 15:10 — forked from stolinski/providerCompose.js
ProviderComposer
function ProviderComposer({ contexts, children }) {
return contexts.reduceRight(
(kids, parent) =>
React.cloneElement(parent, {
children: kids,
}),
children
);
}