yo-next-auth/app/[locale]/auth/error/page.tsx

10 lines
148 B
TypeScript

import ErrorCard from '@/components/auth/error-card'
const AuthErrorPage = () => {
return (
<ErrorCard/>
)
}
export default AuthErrorPage