Skip to content
View treyhuffine's full-sized avatar

Organizations

@gitconnected
Block or Report

Block or report treyhuffine

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned

  1. treyhuffine.com treyhuffine.com Public

    Personal website

    JavaScript 4 1

  2. is-react is-react Public

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

    JavaScript 29 5

  3. lightbox-react lightbox-react Public

    Lightbox for components or images built for React

    JavaScript 63 32

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

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

    JavaScript 79 31

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

    TypeScript 70 31

  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