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

11 lines
216 B
TypeScript
Raw Normal View History

2023-09-30 02:18:44 +00:00
import Share from './Share';
2023-11-12 04:45:09 +00:00
import { Metadata } from 'next';
2023-09-29 12:29:22 +00:00
2024-01-29 22:47:52 +00:00
export default function ({ params: { shareId } }) {
return <Share shareId={shareId[0]} />;
2023-09-29 12:29:22 +00:00
}
2023-11-12 04:45:09 +00:00
export const metadata: Metadata = {
title: 'umami',
};