Files
yo-next-auth/app/[locale]/auth/error/page.tsx
2024-04-10 21:24:25 +03:00

10 lines
147 B
TypeScript

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