10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
"use client";
|
|
import { ErrorState } from "@/components/states/error-state";
|
|
export default function Error() {
|
|
return (
|
|
<main className="p-8">
|
|
<ErrorState />
|
|
</main>
|
|
);
|
|
}
|