umami/src/app/(main)/pixels/[pixelId]/page.tsx
2025-11-22 22:42:42 -08:00

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',
};