import { Button, Stack, Text, Title } from "@mantine/core"; import { useModals } from "@mantine/modals"; import { ModalsContextProps } from "@mantine/modals/lib/context"; import { useRouter } from "next/router"; const showErrorModal = ( modals: ModalsContextProps, title: string, text: string ) => { return modals.openModal({ closeOnClickOutside: false, withCloseButton: false, closeOnEscape: false, title: {title}, children: , }); }; const Body = ({ text }: { text: string }) => { const modals = useModals(); const router = useRouter(); return ( <> {text} ); }; export default showErrorModal;