From fc608a6ea2df1af0f05b6cf345446a8ed4425345 Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Wed, 20 Jan 2021 15:11:33 -0500 Subject: [PATCH] Renamed folder and update exports --- src/components/ItemTable/ItemTable.js | 2 +- src/components/LastUpdatedCell.js/index.js | 3 --- .../{LastUpdatedCell.js => LastUpdatedCell}/LastUpdatedCell.js | 0 .../{LastUpdatedCell.js => LastUpdatedCell}/LastUpdatedCell.md | 0 src/components/LastUpdatedCell/index.js | 3 +++ 5 files changed, 4 insertions(+), 4 deletions(-) delete mode 100644 src/components/LastUpdatedCell.js/index.js rename src/components/{LastUpdatedCell.js => LastUpdatedCell}/LastUpdatedCell.js (100%) rename src/components/{LastUpdatedCell.js => LastUpdatedCell}/LastUpdatedCell.md (100%) create mode 100644 src/components/LastUpdatedCell/index.js diff --git a/src/components/ItemTable/ItemTable.js b/src/components/ItemTable/ItemTable.js index 81f7475..6df2fdd 100644 --- a/src/components/ItemTable/ItemTable.js +++ b/src/components/ItemTable/ItemTable.js @@ -7,7 +7,7 @@ import RelativeTime from "react-relative-time"; import ItemTableFilter from "../ItemTableFilter/" import { ArrowDownward, ArrowUpward } from "@material-ui/icons"; import ItemTableCell from "../ItemTableCell"; -import LastUpdatedCell from "../LastUpdatedCell.js/LastUpdatedCell"; +import LastUpdatedCell from "../LastUpdatedCell/"; export default function ItemTable({ data }) { const [selectedRow, setSelecetedRow] = useState({ queue: null, number: null }); diff --git a/src/components/LastUpdatedCell.js/index.js b/src/components/LastUpdatedCell.js/index.js deleted file mode 100644 index 42d1ac9..0000000 --- a/src/components/LastUpdatedCell.js/index.js +++ /dev/null @@ -1,3 +0,0 @@ -import LastUpdatedCell from "./ItemTableCell"; - -export default LastUpdatedCell; \ No newline at end of file diff --git a/src/components/LastUpdatedCell.js/LastUpdatedCell.js b/src/components/LastUpdatedCell/LastUpdatedCell.js similarity index 100% rename from src/components/LastUpdatedCell.js/LastUpdatedCell.js rename to src/components/LastUpdatedCell/LastUpdatedCell.js diff --git a/src/components/LastUpdatedCell.js/LastUpdatedCell.md b/src/components/LastUpdatedCell/LastUpdatedCell.md similarity index 100% rename from src/components/LastUpdatedCell.js/LastUpdatedCell.md rename to src/components/LastUpdatedCell/LastUpdatedCell.md diff --git a/src/components/LastUpdatedCell/index.js b/src/components/LastUpdatedCell/index.js new file mode 100644 index 0000000..35380d3 --- /dev/null +++ b/src/components/LastUpdatedCell/index.js @@ -0,0 +1,3 @@ +import LastUpdatedCell from "./LastUpdatedCell"; + +export default LastUpdatedCell; \ No newline at end of file