4 lines
180 B
TypeScript
4 lines
180 B
TypeScript
import { useSyncExternalStore } from "react";
|
|
import { store } from "./store";
|
|
|
|
export const useSyncProviders = ()=> useSyncExternalStore(store.subscribe, store.value, store.value) |