radames's picture
cleaning up
6a839c1
raw history blame
No virus
304 Bytes
// @ts-nocheck
import { useRoom } from "./useRoom";
/**
* Works similarly to `liveblocks-react` useBatch
* https://liveblocks.io/docs/api-reference/liveblocks-react#useBatch
*
* const batch = useBatch()
* batch(() => {
* // ...
* })
*/
export function useBatch() {
return useRoom().batch;
}