blob: 107ddf46021d47493d89f98b1e69b19caf84cc1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import Header from "@/components/layouts/Header";
import Layout from "@/components/layouts/Layout";
export default function Error() {
return (
<Layout>
<Header title="Kesalahan Internal"/>
</Layout>
);
}
|