mirror of
https://github.com/makeplane/plane.git
synced 2025-12-15 19:37:51 +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>
|
|
);
|
|
}
|