Files
beenvoice-app/components/useClientOnlyValue.web.ts
T
soconnor 8a7a8df477 Initial commit
Generated by create-expo-app 4.0.0.
2026-06-17 15:44:12 -04:00

13 lines
374 B
TypeScript

import { useEffect, useState } from 'react';
// `useEffect` is not invoked during server rendering, meaning
// we can use this to determine if we're on the server or not.
export function useClientOnlyValue<S, C>(server: S, client: C): S | C {
const [value, setValue] = useState<S | C>(server);
useEffect(() => {
setValue(client);
}, [client]);
return value;
}