TriloopTem_App/components/useClientOnlyValue.ts
zhoujie ed8682a1e2 Initial commit
Generated by create-expo-app 4.0.0.
2026-06-06 21:30:22 +08:00

5 lines
190 B
TypeScript

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