Skip to content

Instantly share code, notes, and snippets.

View ArrayKnight's full-sized avatar
🏴

Ray Knight ArrayKnight

🏴
  • Olympia, Washington
View GitHub Profile
import React, { Component, memo, ReactElement, Suspense, useState, useEffect } from 'react';
import { fetchUserProfile } from '../elsewhere'
enum Status {
Pending,
Success,
Failure,
}