feat: show payment portal information

This commit is contained in:
Ali BARIN
2023-03-06 19:42:41 +00:00
parent dbeeb61cc5
commit 5e7b4bfe45
7 changed files with 73 additions and 7 deletions

View File

@@ -1,6 +1,8 @@
import Link from '@mui/material/Link';
export const generateExternalLink = (link: string) => (str: string) =>
(
<a href={link} target="_blank">
<Link href={link} target="_blank">
{str}
</a>
</Link>
);