Skip to content
View pantos27's full-sized avatar
💅
coding makes my nails polish peel
💅
coding makes my nails polish peel
Block or Report

Block or report pantos27

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. A typescript way to use React Suspns... A typescript way to use React Suspnse blocks with simple promises
    1
    const promiseWrapper = <T> (promise: Promise<T>): () => T => {
    2
        let status = "pending";
    3
        let result: T;
    4
    
                  
    5
        const s = promise.then(