export function useConst(getValue: () => T): T { const value = getValue(); return value; }