diff --git a/src/h.ts b/src/h.ts index 5b64a3a..86e0b57 100644 --- a/src/h.ts +++ b/src/h.ts @@ -82,7 +82,7 @@ declare global { } } -export const useRef = (initialValue: T | null = null): RefObject => { +export const useRef = (initialValue: T | null = null): RefObject => { return { current: initialValue }; };