You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
368 B
12 lines
368 B
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;
|
|
}
|
|
|