Skip to content
View gchumillas's full-sized avatar
Block or Report

Block or report gchumillas

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

Hi there 👋

Pinned Loading

  1. schema-fixer schema-fixer Public

    A node library to "repair" data from external sources

    TypeScript 15

  2. image-editor image-editor Public

    Image Editor made in React and TypeScript

    TypeScript 6 1

  3. kitchendoro kitchendoro Public

    A multi-timer app created in React Native.

    JavaScript 4

  4. clockodoro clockodoro Public

    A digital retro clock written in React Native

    JavaScript 2

  5. validate forms hook validate forms hook
    1
    import { useCallback, useMemo, useState } from 'react';
    2
    
                  
    3
    const useValidator = <T extends Record<string, string>>(validator: () => T) => {
    4
      const [errors, setErrors] = useState<Partial<T>>({})
    5
    
                  
  6. breakpoints hook breakpoints hook
    1
    import { useCallback, useMemo, useEffect } from 'react'
    2
    
                  
    3
    export const useBreakpoints = <T extends Record<string, number>>(breakpoints: T): keyof T | undefined => {
    4
      const searchBreakpoint = useCallback((breakpoints: { key: string, value: number }[]) => {
    5
        return breakpoints.find((x) => window.innerWidth < x.value)?.key