From 6d6abdcfb9aad55f3610495111159bdbfad161d4 Mon Sep 17 00:00:00 2001 From: skybrewer <sky.brewer@ess.eu> Date: Thu, 4 Jul 2024 10:08:05 +0200 Subject: [PATCH] Add a NotFoundView story for testing --- .../views/Navigation/NotFoundView.stories.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/stories/views/Navigation/NotFoundView.stories.js diff --git a/src/stories/views/Navigation/NotFoundView.stories.js b/src/stories/views/Navigation/NotFoundView.stories.js new file mode 100644 index 00000000..3262a8fc --- /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 />; -- GitLab