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