Skip to content
View obrenoco's full-sized avatar
πŸ—οΈ
building things
πŸ—οΈ
building things

Block or report obrenoco

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
obrenoco/README.md

Hi there, I'm Breno!

Abstract

  • πŸ‘¨β€πŸ’» Currently working as a Front-End Developer for StoneCo.
  • 🌱 Learning more about and studying: JavaScript, Typescript and React.
  • πŸ’™ Interests: art 🎨, nature 🌱.

Find me around the web 🌎:

Pinned Loading

  1. atomic-gsap atomic-gsap Public

    🧬 Atomic GSAP projects.

    HTML

  2. brasil-svg brasil-svg Public

    πŸ‡§πŸ‡· Interactive heatmap of Brazil - CSS only

    TypeScript 2

  3. Rebuilding Utility Types Rebuilding Utility Types
    1
    // Rebuilding Utility Types
    2
    // T = Type; K = Keys; U = Union;
    3
    
                  
    4
    // Nullable
    5
    type MyNullable<T> = T | null;
  4. Rebuild useCallback and useMemo hook... Rebuild useCallback and useMemo hooks from React
    1
    type CallbackProps = (...args: any[]) => any;
    2
    const useCallback2 = <T extends CallbackProps>(
    3
      y: T,
    4
      dependencies: unknown[]
    5
    ): T => {