5 lines
175 B
JavaScript
5 lines
175 B
JavaScript
|
|
import { useSyncExternalStore } from "react";
|
||
|
|
export function useEditorStoreState(store) {
|
||
|
|
return useSyncExternalStore(store.subscribe, store.getState, store.getState);
|
||
|
|
}
|