Skip to content

Instantly share code, notes, and snippets.

@lovetingyuan
Created June 22, 2025 06:25
Show Gist options
  • Select an option

  • Save lovetingyuan/9639c870fe4aaaef07a14725971dc422 to your computer and use it in GitHub Desktop.

Select an option

Save lovetingyuan/9639c870fe4aaaef07a14725971dc422 to your computer and use it in GitHub Desktop.
useDomId
import { useId } from "react"
export default function useDomId(ns?: string) {
const id = (ns || "id") + "_" + btoa(useId()).replace(/[+/=]/g, "")
return id
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment