mirror of
https://github.com/umami-software/umami.git
synced 2026-02-16 02:25:35 +01:00
12 lines
302 B
TypeScript
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',
|
|
};
|