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

11 lines
206 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
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
}
2023-11-12 04:45:09 +00:00
export const metadata: Metadata = {
title: 'umami',
};