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

10 lines
147 B
TypeScript

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