Skip to content

Instantly share code, notes, and snippets.

View danielfarrell's full-sized avatar

Daniel Farrell danielfarrell

View GitHub Profile
@hunterc
hunterc / Fetch.js
Created October 5, 2017 02:56
<Fetch> component
// @flow
import type { Element } from "react"
import React from "react"
import invariant from "invariant"
type State = {
data: Object | null,
error: Error | null,
fetching: boolean