umami/src/app/sso/page.tsx

11 lines
164 B
TypeScript
Raw Normal View History

2024-02-17 19:41:34 +01:00
import { Suspense } from 'react';
2024-02-17 19:21:46 +01:00
import SSOPage from './SSOPage';
2022-10-31 19:02:37 +01:00
2024-02-17 19:21:46 +01:00
export default function () {
2024-02-17 19:41:34 +01:00
return (
<Suspense>
<SSOPage />
</Suspense>
);
2022-10-31 19:02:37 +01:00
}