mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 11:57:56 +01:00
10 lines
131 B
TypeScript
10 lines
131 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
export default function RootErrorPage() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<p>Something went wrong.</p>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|