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

6 lines
115 B
TypeScript
Raw Normal View History

2023-09-30 02:18:44 +00:00
import Share from './Share';
2023-09-29 12:29:22 +00:00
2023-09-30 02:18:44 +00:00
export default function ({ params: { id } }) {
return <Share shareId={id[0]} />;
2023-09-29 12:29:22 +00:00
}