diff --git a/client/src/pages/RefreshNotification/RefreshNotification.story.tsx b/client/src/pages/RefreshNotification/RefreshNotification.story.tsx
new file mode 100644
index 000000000..0ace63112
--- /dev/null
+++ b/client/src/pages/RefreshNotification/RefreshNotification.story.tsx
@@ -0,0 +1,12 @@
+import type { Meta, StoryObj } from "@storybook/react"
+import RefreshNotification from "./RefreshNotification"
+const meta: Meta = {
+ component: RefreshNotification
+}
+
+export default meta
+type Story = StoryObj
+
+export const DefaultRefreshNotification: Story = {
+ args: {}
+}
diff --git a/client/src/pages/RefreshNotification/RefreshNotification.tsx b/client/src/pages/RefreshNotification/RefreshNotification.tsx
new file mode 100644
index 000000000..3243ca713
--- /dev/null
+++ b/client/src/pages/RefreshNotification/RefreshNotification.tsx
@@ -0,0 +1,16 @@
+/**
+ * Used for if there is a lazy load error due to a chunk not being found
+ *
+ * Also catches any unhandled errors
+ */
+const RefreshNotification = () => {
+ return (
+