Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
274 Bytes
"use client";
import Box from "@/components/Box";
const Error = () => {
return (
<Box className="h-full flex items-center justify-center">
<div className="text-neutral-400">
Something went wrong.
</div>
</Box>
);
}
export default Error;