10 lines
148 B
TypeScript
10 lines
148 B
TypeScript
import ErrorCard from '@/components/auth/error-card'
|
|
|
|
const AuthErrorPage = () => {
|
|
return (
|
|
<ErrorCard/>
|
|
)
|
|
}
|
|
|
|
export default AuthErrorPage
|