Skip to content
View Kataclan's full-sized avatar

Block or report Kataclan

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. 2dmoon-game-client 2dmoon-game-client Public

    A NextJS + P5js simple game

    TypeScript

  2. react-dapp-template react-dapp-template Public

    DApp template for Mumbai & Polygon chains.

    TypeScript

  3. multichain-faucet-dapp multichain-faucet-dapp Public

    DApp to simulate a multichain reusable Faucet for a token airdrop

    TypeScript 1

  4. img-generation-api img-generation-api Public

    GraphQL simple User API

    TypeScript

  5. Simple Dockerfile to run react app i... Simple Dockerfile to run react app in a docker container using CRA Webpack Web Server
    1
    #stage1 - build react app
    2
    
                  
    3
    # Uncomment this for Mac M1 chips
    4
    # FROM --platform=linux/amd64 node:19-alpine
    5
    
                  
  6. React hook to call an async method, ... React hook to call an async method, which retrieves also loading and error states
    1
    import { useCallback, useEffect, useRef, useState } from 'react';
    2
    
                  
    3
    export interface AsyncCallProps<SendParams, ReturnObj> {
    4
      asyncFunc: (params: SendParams) => Promise<ReturnObj>;
    5
      asyncFuncParams: SendParams;