6 lines
152 B
TypeScript
6 lines
152 B
TypeScript
import {unstable_batchedUpdates} from 'react-native'
|
|
|
|
export function batchedUpdates(fn: () => void): void {
|
|
unstable_batchedUpdates(fn, undefined)
|
|
}
|