sso-poc-marn/components/useClientOnlyValue.web.ts
Guillaume "B.B." Van Hemmen 97e93286f1
Initial commit
Generated by create-expo-app 2.3.1.
2024-05-06 11:06:27 +02:00

12 lines
368 B
TypeScript

import React 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] = React.useState<S | C>(server);
React.useEffect(() => {
setValue(client);
}, [client]);
return value;
}