diff --git a/src/stories/views/Navigation/NotFoundView.stories.js b/src/stories/views/Navigation/NotFoundView.stories.js
new file mode 100644
index 0000000000000000000000000000000000000000..3262a8fcdf54deda100cca4db1f4eea13ec1de8f
--- /dev/null
+++ b/src/stories/views/Navigation/NotFoundView.stories.js
@@ -0,0 +1,15 @@
+import React from "react";
+import { AppHarness } from "../../../mocks/AppHarness";
+import NotFoundView from "../../../components/navigation/NotFoundView";
+
+export default {
+  title: "Views/Navigation/NotFoundView"
+};
+
+const Template = () => (
+  <AppHarness>
+    <NotFoundView />
+  </AppHarness>
+);
+
+export const Default = () => <Template />;