Skip to content

Instantly share code, notes, and snippets.

@JonatanSalas
Created March 4, 2018 14:37
Show Gist options
  • Save JonatanSalas/4b649856b586a6ed788ff724a368081e to your computer and use it in GitHub Desktop.
Save JonatanSalas/4b649856b586a6ed788ff724a368081e to your computer and use it in GitHub Desktop.
import React from "react";
import { SimpleCache } from "simple-cache-provider";
const withCache = Component => props => (
<SimpleCache.Consumer>
{cache => <Component cache={cache} {...props} />}
</SimpleCache.Consumer>
);
export default withCache;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment