mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import { PixelPage } from './PixelPage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default async function ({ params }: { params: Promise<{ pixelId: string }> }) {
|
|
const { pixelId } = await params;
|
|
|
|
return <PixelPage pixelId={pixelId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Pixel',
|
|
};
|