merge new into master

This commit is contained in:
2026-02-05 17:31:20 +00:00
16267 changed files with 2194867 additions and 0 deletions

View File

@@ -0,0 +1 @@
export { useIsHydrated } from './use-is-hydrated';

View File

@@ -0,0 +1,16 @@
import { useSyncExternalStore } from 'use-sync-external-store/shim';
/**
* Determines whether or not the component tree has been hydrated.
*/
export function useIsHydrated() {
return useSyncExternalStore(
subscribe,
() => true,
() => false
);
}
function subscribe() {
return () => {};
}