Animation | Authentication | Colors | Database | Design | Domain | Fullstack | Frameworks | Hosting | Icons | Images | ORM | Realtime | Runtime | State Management | Tools | UI
TIP:
ctrl
+click
/scroll wheel click
to open in new tab 👌
"use client"; | |
import { type FC, useCallback, useEffect, useRef, useState } from "react"; | |
import { css } from "@kuma-ui/core"; | |
import { cva } from "class-variance-authority"; | |
import { MdClose, MdOutlineUploadFile } from "react-icons/md"; | |
import { isNullish } from "remeda"; | |
import { SimpleButton } from "@/components/SimpleButton"; |
import { useRef, useEffect } from "react" | |
interface ModalProps | |
extends Omit< | |
React.HTMLAttributes<HTMLDialogElement>, | |
"onMouseEnter" | "onMouseLeave" | |
> { | |
show: boolean | |
setShow: React.Dispatch<React.SetStateAction<boolean>> | |
} |
import { | |
AmbientLight, | |
AnimationMixer, | |
Box3, | |
Clock, | |
DirectionalLight, | |
GridHelper, | |
Mesh, | |
Object3D, | |
PerspectiveCamera, |