umami/src/app/share/[...id]/page.tsx
2023-09-29 20:19:27 -07:00

5 lines
112 B
TypeScript

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