Files
umami/src/app/(main)/admin/users/[userId]/page.tsx
2025-07-10 20:04:17 -07:00

13 lines
293 B
TypeScript

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