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