9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
"use client"
|
|
|
|
import type { ErrorPage } from "@/types/next/error"
|
|
|
|
export default function ProfileError({ error }: ErrorPage) {
|
|
console.error(error)
|
|
return <h1>Error happened, Profile</h1>
|
|
}
|