diff --git a/src/pages/Events/EventsPage.jsx b/src/pages/Events/EventsPage.jsx index 4c56864..670f9b5 100644 --- a/src/pages/Events/EventsPage.jsx +++ b/src/pages/Events/EventsPage.jsx @@ -1,5 +1,5 @@ import { useEffect, useState } from "react"; -import Event from "../../components/Event/Event.jsx"; +import Event from "./components/Event/Event.jsx"; import styles from "./EventsPage.module.css"; import ToolBar from "../../components/ToolBar/ToolBar.jsx"; import getAllEvents from "../../utils/events/getAllEvents.js"; diff --git a/src/components/Event/Event.jsx b/src/pages/Events/components/Event/Event.jsx similarity index 100% rename from src/components/Event/Event.jsx rename to src/pages/Events/components/Event/Event.jsx diff --git a/src/components/Event/Event.module.css b/src/pages/Events/components/Event/Event.module.css similarity index 100% rename from src/components/Event/Event.module.css rename to src/pages/Events/components/Event/Event.module.css