build(react): build26 from 45504a2b

This commit is contained in:
publish
2026-08-05 18:57:47 +02:00
commit 784a38389b
1955 changed files with 60543 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
"use client";
import { useCallback } from "react";
//#region src/utils/use-attach-iframe.ts
function useAttachIframe(media) {
return useCallback((element) => {
if (element) media.attach?.(element);
else media.detach?.();
return () => media.detach?.();
}, [media]);
}
//#endregion
export { useAttachIframe };
//# sourceMappingURL=use-attach-iframe.js.map