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