* feat: ability to add guests via app.cal.com/bookings * fix: some update * fix: minor issue * fix: final update * update * update * add requested changes * fix type error * small update * final update * fix type error * fix location * update calender event --------- Co-authored-by: Somay Chauhan <somaychauhan98@gmail.com>
7 lines
228 B
TypeScript
7 lines
228 B
TypeScript
import dynamic from "next/dynamic";
|
|
|
|
/** These are like 40kb that not every user needs */
|
|
const MultiEmail = dynamic(() => import("./MultiEmail")) as unknown as typeof import("./MultiEmail").default;
|
|
|
|
export default MultiEmail;
|