Skip to content
View gchumillas's full-sized avatar

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. schema-fixer schema-fixer Public

    A small utility to fix data, preserving its types

    TypeScript 18

  2. image-editor image-editor Public

    Image Editor made in React and TypeScript

    TypeScript 10 3

  3. caloryapp/caloryapp.github.io caloryapp/caloryapp.github.io Public

    Add foods. Count calories. That's it!

    TypeScript

  4. kitchendoro kitchendoro Public

    A multi-timer app created in React Native.

    JavaScript 4

  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