Skip to content
View CFrez's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro

Block or report CFrez

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 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. Local Storage Hook Local Storage Hook
    1
    /**
    2
     * A hook that provides a simple way to save, load, and clear data from localStorage
    3
     *
    4
     * @param key - The key to use for the localStorage item
    5
     *
  2. Self Contained ThemeToggle for React... Self Contained ThemeToggle for React with shadcn/ui and tailwindcss
    1
    import { useEffect, useState } from "react";
    2
    import { Moon, Sun } from "lucide-react";
    3
    // pnpm dlx shadcn@latest add button
    4
    import { Button } from "@/components/ui/button";
    5