actually show component :P

This commit is contained in:
Eduardo Quiros 2022-08-23 03:33:06 -06:00
parent 03e12adbc2
commit 66bd6c4f78
No known key found for this signature in database
GPG Key ID: B77F36C3F12720B4
1 changed files with 4 additions and 3 deletions

View File

@ -202,10 +202,10 @@ const App = () => {
icon: PrimeIcons.BUILDING, icon: PrimeIcons.BUILDING,
to: '/areasComunes', to: '/areasComunes',
}, },
{ label: 'Comunicados', icon: PrimeIcons.COMMENTS, to: '/registroComunicado'}, { label: 'Comunicados', icon: PrimeIcons.COMMENTS, to: '/registroComunicado' },
{ label: 'Invitados', icon: PrimeIcons.USERS, to: '/invitadosComunidad' }, { label: 'Invitados', icon: PrimeIcons.USERS, to: '/invitadosComunidad' },
] ]
}, },
] ]
@ -470,6 +470,7 @@ const App = () => {
<Route path="/inquilinos" component={Inquilinos} /> <Route path="/inquilinos" component={Inquilinos} />
<Route path="/areasComunes" component={AreasComunes} /> <Route path="/areasComunes" component={AreasComunes} />
<Route path="/registroComunicado" component={RegistroComunicado} /> <Route path="/registroComunicado" component={RegistroComunicado} />
<Route path="/invitadosComunidad" component={InvitadosComunidad} />
</> </>
) )
} else { } else {