diff --git a/web-ui/web-react/src/App.js b/web-ui/web-react/src/App.js
index 1fef97b4..a70c89ec 100644
--- a/web-ui/web-react/src/App.js
+++ b/web-ui/web-react/src/App.js
@@ -51,6 +51,7 @@ import './assets/layout/layout.scss';
import './App.scss';
import LogIn from './components/LogIn';
import { PrimeIcons } from 'primereact/api';
+import AreasComunes from './components/AreasComunes';
const App = () => {
const [layoutMode, setLayoutMode] = useState('static');
@@ -187,7 +188,16 @@ const App = () => {
icon: PrimeIcons.BUILDING,
to: '/comunidadesViviendas',
},
- { label: 'Inquilinos', icon: PrimeIcons.USER, to: '/inquilinos' },
+ {
+ label: 'Inquilinos',
+ icon: PrimeIcons.USER,
+ to: '/inquilinos'
+ },
+ {
+ label: 'Áreas Comunes de Comunidad',
+ icon: PrimeIcons.BUILDING,
+ to: '/areasComunes',
+ },
{ label: 'Log in', icon: 'pi pi-fw pi-id-card', to: '/logIn' },
],
},
@@ -411,6 +421,7 @@ const App = () => {
+
diff --git a/web-ui/web-react/src/components/Areas Comunes.js b/web-ui/web-react/src/components/Areas Comunes.js
deleted file mode 100644
index e69de29b..00000000
diff --git a/web-ui/web-react/src/components/AreasComunes.js b/web-ui/web-react/src/components/AreasComunes.js
new file mode 100644
index 00000000..7174a689
--- /dev/null
+++ b/web-ui/web-react/src/components/AreasComunes.js
@@ -0,0 +1,12 @@
+import { Button } from 'primereact/button';
+import { Dropdown } from 'primereact/dropdown';
+import { InputText } from 'primereact/inputtext';
+import React, { useEffect, useState } from 'react';
+
+
+const AreasComunes = () => {
+
+};
+
+
+export default React.memo(AreasComunes);