mirror of
https://github.com/documenso/documenso.git
synced 2025-11-25 14:11:43 +10:00
feat: create sharing id for each recipient
This commit is contained in:
committed by
Mythie
parent
1bce169228
commit
ebcd7c78e4
17
apps/web/src/app/(share)/share/[shortId]/page.tsx
Normal file
17
apps/web/src/app/(share)/share/[shortId]/page.tsx
Normal file
@ -0,0 +1,17 @@
|
||||
import React from 'react';
|
||||
|
||||
export type SharePageProps = {
|
||||
params: {
|
||||
shortId?: string;
|
||||
};
|
||||
};
|
||||
|
||||
export default async function SharePage({ params: { shortId } }: SharePageProps) {
|
||||
console.log(shortId);
|
||||
|
||||
return (
|
||||
<div>
|
||||
<h1>Share Page</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@ -1,9 +0,0 @@
|
||||
import React from 'react';
|
||||
|
||||
export default async function SharePage() {
|
||||
return (
|
||||
<div>
|
||||
<h1>Share Page</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user