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