aboutsummaryrefslogtreecommitdiff
path: root/src/app/sso/page.tsx
blob: f6290d41ca3bbdcffbe2c0cc45e347b963a94010 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { Suspense } from 'react';
import { SSOPage } from './SSOPage';

export default function () {
  return (
    <Suspense>
      <SSOPage />
    </Suspense>
  );
}