Created
March 4, 2018 14:36
-
-
Save JonatanSalas/fc371e4d0836c95b0068a148e2a8b9c8 to your computer and use it in GitHub Desktop.
Revisions
-
Jonatan E. Salas created this gist
Mar 4, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ import { createResource as createFetcher } from 'simple-cache-provider'; const newsFetcher = createFetcher(async () => { const res = await fetch(`https://jsonplaceholder.typicode.com/posts`); return await res.json(); }); export default newsFetcher;