From f30c2bc1de856e60fecf1032ae3f462f83636d5c Mon Sep 17 00:00:00 2001 From: xepaerz Date: Wed, 3 May 2023 22:47:25 +1000 Subject: [PATCH] add CardApartament and Favorites components react --- pairent_frontend_react/src/App.js | 2 + .../CardApartament/CardApartament.jsx | 115 ++++++++++++ .../CardApartament/styles/CardApartament.css | 166 ++++++++++++++++++ .../src/components/Favorites/Favorites.jsx | 31 ++++ .../components/Favorites/styles/Favorites.css | 16 ++ 5 files changed, 330 insertions(+) create mode 100644 pairent_frontend_react/src/components/CardApartament/CardApartament.jsx create mode 100644 pairent_frontend_react/src/components/CardApartament/styles/CardApartament.css create mode 100644 pairent_frontend_react/src/components/Favorites/Favorites.jsx create mode 100644 pairent_frontend_react/src/components/Favorites/styles/Favorites.css diff --git a/pairent_frontend_react/src/App.js b/pairent_frontend_react/src/App.js index b418edd..de151da 100644 --- a/pairent_frontend_react/src/App.js +++ b/pairent_frontend_react/src/App.js @@ -1,6 +1,7 @@ import React from 'react'; import Header from './components/Header/Header'; import Footer from './components/Footer/Footer'; +import Favorites from './components/Favorites/Favorites'; import './App.css'; function App() { @@ -9,6 +10,7 @@ function App() {
+