[Feature]Booking Embed (#2227)

This commit is contained in:
Hariom Balhara
2022-03-31 09:45:47 +01:00
committed by GitHub
parent 4e9c3be598
commit 4a58da62d6
39 changed files with 1740 additions and 22 deletions
@@ -0,0 +1,13 @@
import { useEffect, useState } from "react";
import EmbedSnippet from "@calcom/embed-snippet";
export default function useEmbed(embedJsUrl?: string) {
const [globalCal, setGlobalCal] = useState<ReturnType<typeof EmbedSnippet>>();
useEffect(() => {
setGlobalCal(() => {
return EmbedSnippet(embedJsUrl);
});
}, []);
return globalCal;
}