mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 23:00:34 +00:00
feat: sharable payment link dialog
This commit is contained in:
@@ -1,5 +1,13 @@
|
||||
import { useParams } from 'react-router-dom';
|
||||
import { PaymentPortal } from './PaymentPortal';
|
||||
import { PaymentPortalBoot } from './PaymentPortalBoot';
|
||||
|
||||
export default function PaymentPortalPage() {
|
||||
return <PaymentPortal />;
|
||||
const { linkId } = useParams<{ linkId: string}>();
|
||||
|
||||
return (
|
||||
<PaymentPortalBoot linkId={linkId}>
|
||||
<PaymentPortal />
|
||||
</PaymentPortalBoot>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user