1// This function is web-only as native doesn't currently support server (or build-time) rendering. 2export function useClientOnlyValue<S, C>(server: S, client: C): S | C { 3 return client; 4}