0
0
mirror of https://github.com/makeplane/plane synced 2024-06-14 14:31:34 +00:00
plane/admin/app/error.tsx

10 lines
131 B
TypeScript
Raw Normal View History

2024-05-14 15:24:49 +00:00
"use client";
export default function RootErrorPage() {
return (
<div>
<p>Something went wrong.</p>
</div>
);
}