From ec65b067895a328d6f3cfc77cf95b818b553b6fe Mon Sep 17 00:00:00 2001
From: Johanna Szepanski <johanna.szepanski@softhouse.se>
Date: Fri, 8 Dec 2023 09:35:05 +0100
Subject: [PATCH] removed duplicate files

---
 src/components/host/HostTable.stories.js      | 40 -------------------
 src/views/login/LoginView.stories.js          | 17 --------
 .../statistics/StatisticsView.stories.js      | 17 --------
 3 files changed, 74 deletions(-)
 delete mode 100644 src/components/host/HostTable.stories.js
 delete mode 100644 src/views/login/LoginView.stories.js
 delete mode 100644 src/views/statistics/StatisticsView.stories.js

diff --git a/src/components/host/HostTable.stories.js b/src/components/host/HostTable.stories.js
deleted file mode 100644
index 3b76edac..00000000
--- a/src/components/host/HostTable.stories.js
+++ /dev/null
@@ -1,40 +0,0 @@
-import React from "react";
-import { Container } from "@mui/material";
-import hosts from "../../mocks/fixtures/PagedCSEntryHostResponse.json";
-import { HostTable } from "./HostTable";
-import { RouterHarness } from "../../mocks/AppHarness";
-
-export default {
-  title: "Host/HostTable",
-  component: HostTable
-};
-
-const Template = (args) => (
-  <RouterHarness>
-    <Container>
-      <HostTable {...args} />
-    </Container>
-  </RouterHarness>
-);
-
-export const Empty = Template.bind({});
-Empty.args = {
-  loading: false,
-  hosts: [],
-  totalCount: 0,
-  rowsPerPage: [5, 10, 20, 50, 100],
-  lazyParams: { rows: 10, page: 0 },
-  columnSort: { sortField: null, sortOrder: null },
-  setLazyParams: () => {},
-  setColumnSort: () => {}
-};
-
-export const EmptyLoading = Template.bind({});
-EmptyLoading.args = { ...Empty.args, loading: true };
-
-export const Populated = Template.bind({});
-Populated.args = {
-  ...Empty.args,
-  totalCount: hosts.totalCount,
-  hosts: hosts.csEntryHosts
-};
diff --git a/src/views/login/LoginView.stories.js b/src/views/login/LoginView.stories.js
deleted file mode 100644
index 5f50a691..00000000
--- a/src/views/login/LoginView.stories.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from "react";
-import { AppHarness } from "../../mocks/AppHarness";
-import { LoginView } from "./LoginView";
-
-export default {
-  title: "Views/Login/LoginView",
-  component: LoginView
-};
-
-const Template = (args) => (
-  <AppHarness initialHistory={["/login"]}>
-    <LoginView {...args} />
-  </AppHarness>
-);
-
-export const Default = Template.bind({});
-Default.args = {};
diff --git a/src/views/statistics/StatisticsView.stories.js b/src/views/statistics/StatisticsView.stories.js
deleted file mode 100644
index 4e72d3a2..00000000
--- a/src/views/statistics/StatisticsView.stories.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import React from "react";
-import { StatisticsView } from "./StatisticsView";
-import { AppHarness } from "../../mocks/AppHarness";
-
-export default {
-  title: "Views/Statistics/StatisticsView",
-  component: StatisticsView
-};
-
-const Template = (args) => (
-  <AppHarness>
-    <StatisticsView {...args} />
-  </AppHarness>
-);
-
-export const Default = Template.bind({});
-Default.args = {};
-- 
GitLab