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

6 lines
137 B
TypeScript

import SharePage from './SharePage';
export default function ({ params: { shareId } }) {
return <SharePage shareId={shareId[0]} />;
}