aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src/components/screens/GeneralErrorScreen.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web-shared/src/components/screens/GeneralErrorScreen.svelte')
-rw-r--r--apps/web-shared/src/components/screens/GeneralErrorScreen.svelte7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/web-shared/src/components/screens/GeneralErrorScreen.svelte b/apps/web-shared/src/components/screens/GeneralErrorScreen.svelte
new file mode 100644
index 0000000..dd4b5bd
--- /dev/null
+++ b/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>