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

12 lines
298 B
TypeScript

import type { Metadata } from 'next';
import { UserPage } from './UserPage';
export default async function ({ params }: { params: Promise<{ userId: string }> }) {
const { userId } = await params;
return <UserPage userId={userId} />;
}
export const metadata: Metadata = {
title: 'User',
};