Skip to content
View treyhuffine's full-sized avatar

Organizations

@gitconnected

Block or report treyhuffine

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. treyhuffine.com treyhuffine.com Public

    Personal website

    JavaScript 5 1

  2. is-react is-react Public

    Determine if a variable or statement is a React element or component

    JavaScript 29 4

  3. lightbox-react lightbox-react Public

    Lightbox for components or images built for React

    JavaScript 64 31

  4. gitconnected/hacker-news-reader gitconnected/hacker-news-reader Public

    Build a Hacker News clone with React and Redux, deploy it to production

    JavaScript 78 32

  5. graphql-react-typescript-spacex graphql-react-typescript-spacex Public

    TypeScript 68 30

  6. A simple JavaScript Promise implemen... A simple JavaScript Promise implementation for education purposes
    1
    class PromiseSimple {
    2
      constructor(executionFunction) {
    3
        this.promiseChain = [];
    4
        this.handleError = () => {};
    5