fix: add loading state when no uri is given

This commit is contained in:
Christel Westerberg
2024-02-08 16:04:47 +01:00
parent c0b7f57c8a
commit 86dd453c85
6 changed files with 153 additions and 34 deletions

View File

@@ -0,0 +1,9 @@
"use client"
export default function Error({ error }: { error: Error }) {
return (
<div>
<h2>Something went wrong!</h2>
</div>
)
}