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

6 lines
137 B
TypeScript
Raw Normal View History

2024-02-06 07:59:33 +00:00
import SharePage from './SharePage';
2023-09-29 12:29:22 +00:00
2024-01-29 22:47:52 +00:00
export default function ({ params: { shareId } }) {
2024-02-06 07:59:33 +00:00
return <SharePage shareId={shareId[0]} />;
2023-09-29 12:29:22 +00:00
}