mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 23:57:12 +01:00
10 lines
224 B
TypeScript
10 lines
224 B
TypeScript
import { Metadata } from 'next';
|
|
import OIDCSettingsPage from '@/app/(main)/settings/OIDCSettingsPage';
|
|
|
|
export default function () {
|
|
return <OIDCSettingsPage />;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'OIDC',
|
|
};
|