umami/src/app/(main)/settings/users/[userId]/page.tsx
2025-02-21 16:55:05 -08:00

12 lines
302 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 Settings',
};