import { useMemo } from "react" import * as THREE from "three" export function useUniforms>(uniforms: T) { return useMemo(() => uniforms, []) }