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