UNPKG

@codegouvfr/react-dsfr

Version:

French State Design System React integration library

6 lines (5 loc) 167 B
/** * Compute a value on first render and never again, * Equivalent of const [x] = useState(()=> ...) */ export declare function useConst<T>(getValue: () => T): T;