umami/src/app/share/[...id]/page.tsx

10 lines
147 B
TypeScript

import Share from './Share';
export default function ({ params: { id } }) {
if (!id) {
return null;
}
return <Share shareId={id} />;
}