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