UNPKG

@pmwcs/base

Version:
11 lines (9 loc) 240 B
import { useState } from 'preact/hooks' import { randomId } from './random-id' export const useId = function (prefix, props) { const idToUse = props.id ? props.id : randomId(prefix) const [id] = useState(idToUse) return id }