import { Stack, TextInput } from "@mantine/core"; import { ModalsContextProps } from "@mantine/modals/lib/context"; const showShareLinkModal = ( modals: ModalsContextProps, shareId: string, appUrl: string ) => { const link = `${appUrl}/share/${shareId}`; return modals.openModal({ title: "Share link", children: ( ), }); }; export default showShareLinkModal;