umami/src/app/share/[...id]/page.tsx
2023-11-11 20:45:09 -08:00

11 lines
206 B
TypeScript

import Share from './Share';
import { Metadata } from 'next';
export default function ({ params: { id } }) {
return <Share shareId={id[0]} />;
}
export const metadata: Metadata = {
title: 'umami',
};