Skip to content
View EEVEEzz's full-sized avatar
💭
I may be normal, but I'm full of potential!
💭
I may be normal, but I'm full of potential!

Block or report EEVEEzz

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 useFetch Custom Hook React useFetch Custom Hook
    1
    import React from "react";
    2
    import { useState, useEffect } from "react";
    3
    
                  
    4
    const useFetch = (url, options) => {
    5
      const [loading, setLoading] = useState(true);
  2. useLocalStorage Custom Hook useLocalStorage Custom Hook
    1
    ## useLocalStorage Custom Hook
    2
    
                  
    3
    >The useLocalStorage custom hook is designed to simplify the process of storing and retrieving data in the browser's local storage using React. It provides a convenient way to persist data across page reloads or even when the browser is closed and reopened.
    4
    5
    ### Usage
  3. dexter-pokedex dexter-pokedex Public

    Electron React Pokedex

    JavaScript 1 1