Skip to content
View alagunoff's full-sized avatar
:octocat:
:octocat:

Block or report alagunoff

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. nextjs-web-app nextjs-web-app Public template

    Next.js template for building web applications

    JavaScript

  2. telegram-mini-app telegram-mini-app Public template

    Template for building telegram mini applications

    TypeScript 7 1

  3. React hook that manages local or ses... React hook that manages local or session storage value
    1
    import { useState, useEffect } from 'react';
    2
    
                  
    3
    import { isDefined, isString } from '../_utilities';
    4
    
                  
    5
    type StorageType = 'local' | 'session';
  4. React hook that manages countdown React hook that manages countdown
    1
    import { useState, useEffect } from 'react';
    2
    
                  
    3
    import { convertSecondsToMilliseconds, isDefined } from '../utils';
    4
    
                  
    5
    function useCountdown(initialEndTimestamp: number): number;