mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 16:45:35 +01:00
13 lines
267 B
TypeScript
13 lines
267 B
TypeScript
import UsersList from 'app/(app)/settings/users/UsersList';
|
|
import { Metadata } from 'next';
|
|
|
|
export default function () {
|
|
if (process.env.cloudMode) {
|
|
return null;
|
|
}
|
|
|
|
return <UsersList />;
|
|
}
|
|
export const metadata: Metadata = {
|
|
title: 'Users | umami',
|
|
};
|