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