mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
12 lines
298 B
TypeScript
12 lines
298 B
TypeScript
import type { Metadata } from 'next';
|
|
import { LinkPage } from './LinkPage';
|
|
|
|
export default async function ({ params }: { params: Promise<{ linkId: string }> }) {
|
|
const { linkId } = await params;
|
|
|
|
return <LinkPage linkId={linkId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Link',
|
|
};
|