UNPKG

@codegouvfr/react-dsfr

Version:

French State Design System React integration library

10 lines 275 B
import { useState } from "react"; /** * Compute a value on first render and never again, * Equivalent of const [x] = useState(()=> ...) */ export function useConst(getValue) { const [value] = useState(getValue); return value; } //# sourceMappingURL=useConst.js.map