10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
"use client";
|
|
|
|
export default function Error() {
|
|
return (
|
|
<div className="flex size-full">
|
|
<div className="m-auto text-3xl">Something went wrong</div>
|
|
</div>
|
|
);
|
|
}
|