Skip to content
View ercnshngit's full-sized avatar

Highlights

  • Pro

Block or report ercnshngit

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. ercansahin-blog ercansahin-blog Public

    My personal blog

    TypeScript

  2. just a basic fetching snippet with a... just a basic fetching snippet with abort controller
    1
    import { useState, useEffect } from 'react'
    2
    
                  
    3
    export const useFetch = (url) => {
    4
        const [data, setData] = useState(null)
    5
        const [isPending, setIsPending] = useState(false)