Files
umami/src/app/(main)/settings/users/[userId]/page.tsx
2024-11-26 09:28:57 -08:00

13 lines
289 B
TypeScript

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