Rev 5902 | Rev 5905 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
/* eslint-disable react/prop-types */import React from 'react'import HomeNews from '../../../components/home-section/HomeNews'import SocialNetworks from '../../../components/home-section/SocialNetworks'import Aside from '../Aside/Aside'import PeopleYouMayKnow from '../Aside/PeopleYouMayKnow'import FeedSection from '../Feed/FeedSection'import Groups from '../sidebar/Groups'import Sidebar from '../sidebar/Sidebar'import UserInfo from '../sidebar/UserInfo'const HomeSection = ({ routeTimeline, backendVars }) => {return (<div className="container px-0"><div className="app__body layout__content"><Sidebar><UserInfo {...backendVars} /><Groups /><SocialNetworksmoodle={{image: backendVars.moodle_image,name: backendVars.moodle_name,}}microlearning={{playStore: backendVars.microlearning_playstore,appStore: backendVars.microlearning_appstore,}}className="sidebar-apps__widget"/></Sidebar><FeedSection routeTimeline={routeTimeline} backendVars={backendVars} /><Aside><PeopleYouMayKnow /><HomeNews classname="sidebar-apps__widget d-flex flex-column" /></Aside></div></div>)}export default HomeSection