diff --git a/src/components/CarItem/CarItem.jsx b/src/components/CarItem/CarItem.jsx
new file mode 100644
index 0000000..41cde26
--- /dev/null
+++ b/src/components/CarItem/CarItem.jsx
@@ -0,0 +1,20 @@
+
+
+export const CarItem = ({car}) => {
+ const { id, make, model, year, img, rentalPrice, rentalCompany, type, fudnctionalities, address } = car;
+
+ return (
+ <>
+
+
+
+
+ >
+ )
+}
\ No newline at end of file
diff --git a/src/components/CarsList/CarsList.jsx b/src/components/CarsList/CarsList.jsx
index 4b3dfc4..4ea8ef0 100644
--- a/src/components/CarsList/CarsList.jsx
+++ b/src/components/CarsList/CarsList.jsx
@@ -1,6 +1,14 @@
+import { CarItem } from "components/CarItem/CarItem";
+import { useSelector } from "react-redux";
+import { selectCars } from "redux/selectors";
+
export const CarsList = () => {
+ const cars = useSelector(selectCars);
+console.log('cars in List', cars);
+
return (
- <>
- >
+
+ {cars?.map((car) => )}
+
)
}
\ No newline at end of file
diff --git a/src/components/Filters/Filters.jsx b/src/components/Filters/Filters.jsx
index d37924f..3825a72 100644
--- a/src/components/Filters/Filters.jsx
+++ b/src/components/Filters/Filters.jsx
@@ -3,20 +3,26 @@ export const Filters = () => {
<>