mirror of
https://github.com/umami-software/umami.git
synced 2026-02-06 21:57:16 +01:00
7 lines
215 B
TypeScript
7 lines
215 B
TypeScript
import { SharePage } from './SharePage';
|
|
|
|
export default async function ({ params }: { params: Promise<{ shareId: string[] }> }) {
|
|
const { shareId } = await params;
|
|
|
|
return <SharePage shareId={shareId[0]} />;
|
|
}
|