Files
bsky-social-app/src/lib/batchedUpdates.ts
T
2026-08-25 09:40:14 +03:00

6 lines
152 B
TypeScript

import {unstable_batchedUpdates} from 'react-native'
export function batchedUpdates(fn: () => void): void {
unstable_batchedUpdates(fn, undefined)
}