Skip to content
View SebastianHGonzalez's full-sized avatar

Organizations

@mercurio-ar @Grupo-E-022018-DAPP-sgonzalez-lvaquel @Grupo-C2A-022019
Block or Report

Block or report SebastianHGonzalez

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 Loading

  1. React User Playlist - Example of fet... React User Playlist - Example of fetching and displaying an user's playlist using react hooks
    1
    /**
    2
     * React Example
    3
     * User Playlist
    4
     *
    5
     * Example of fetching and displaying an user's playlist using react hooks
  2. ReactDotsAndBoxes ReactDotsAndBoxes Public

    Simple Game - PWA

    JavaScript

  3. apod-client apod-client Public

    React client for NASA's Astronomy Picture of the Day API endpoint

    TypeScript

  4. useQueryState - query string synchro... useQueryState - query string synchronized use state hook for next.js
    1
    import { useState, useEffect } from "react";
    2
    import { useRouter } from "next/router";
    3
    
    
    4
    type IParam = string;
    5
    type IValue = string | string[] | number | number[] | null | undefined;