MoneyListato/components/useClientOnlyValue.ts
2024-11-19 02:04:30 +01:00

4 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;
}