Skip to content
View azaek's full-sized avatar
💭
I may be slow to respond.
💭
I may be slow to respond.
Block or Report

Block or report azaek

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

  1. Calendar Component using date-fns, t... Calendar Component using date-fns, tailwindcss and framer-motion
    1
    import clsx from "clsx";
    2
    import {
    3
      add,
    4
      eachDayOfInterval,
    5
      endOfMonth,
  2. EthFlashCard EthFlashCard Public

    Forked from alokjkashyap/EthFlashCard

    A ethereum app to generate a flash card with redeemable function

    Solidity

  3. lfgl-agora-frontend lfgl-agora-frontend Public

    JavaScript 1

  4. React Hook get image colors React Hook get image colors
    1
    import { useState, useEffect } from "react";
    2
    
                  
    3
    const useImageColor = (img: HTMLImageElement) => {
    4
        const [color, setColor] = useState<any>(null);
    5
    
                  
  5. This is a simple hook to move indica... This is a simple hook to move indicator element related to any tab<HTMLButtonElement> it will give current selected tab position, width and height then you can apply that to animate any HTMLDivElement accordingly
    1
        const [selected, setSelected] = useState(0);
    2
    
                  
    3
        const { w, h, indicatorRef, refs } = useTabIndicator({ selected, center: false });
    4
    
                  
    5
        return (
  6. Image hover zoom like Chrono24 Image hover zoom like Chrono24
    1
    import { useRef, useState } from "react";
    2
    
                  
    3
    const ProductImage = () => {
    4
    
                  
    5
        const [x, setX] = useState(0);