aboutsummaryrefslogtreecommitdiffstats
path: root/old-apps/web-shared/src/components/screens/GeneralErrorScreen.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'old-apps/web-shared/src/components/screens/GeneralErrorScreen.svelte')
-rw-r--r--old-apps/web-shared/src/components/screens/GeneralErrorScreen.svelte7
1 files changed, 7 insertions, 0 deletions
diff --git a/old-apps/web-shared/src/components/screens/GeneralErrorScreen.svelte b/old-apps/web-shared/src/components/screens/GeneralErrorScreen.svelte
new file mode 100644
index 0000000..dd4b5bd
--- /dev/null
+++ b/old-apps/web-shared/src/components/screens/GeneralErrorScreen.svelte
@@ -0,0 +1,7 @@
+<script>
+ export let message;
+ export let status;
+</script>
+
+<h1>{status}</h1>
+<p>{message}</p>