mirror of
https://github.com/umami-software/umami.git
synced 2026-02-15 10:05:36 +01:00
10 lines
227 B
TypeScript
10 lines
227 B
TypeScript
import UserPage from './UserPage';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function ({ params: { userId } }) {
|
|
return <UserPage userId={userId} />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'User Settings',
|
|
};
|