Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5285 | Rev 5902 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5285 Rev 5901
Línea 8... Línea 8...
8
import Groups from '../sidebar/Groups'
8
import Groups from '../sidebar/Groups'
9
import Sidebar from '../sidebar/Sidebar'
9
import Sidebar from '../sidebar/Sidebar'
10
import UserInfo from '../sidebar/UserInfo'
10
import UserInfo from '../sidebar/UserInfo'
Línea 11... Línea 11...
11
 
11
 
-
 
12
const HomeSection = ({ routeTimeline, backendVars }) => {
12
const HomeSection = ({ routeTimeline, backendVars }) => {
13
  console.log(backendVars)
13
  return (
14
  return (
14
        <div className='container px-0'>
15
    <div className="container px-0">
15
            <div className='app__body layout__content'>
16
      <div className="app__body layout__content">
16
                <Sidebar>
17
        <Sidebar>
17
                    <UserInfo {...backendVars} />
18
          <UserInfo {...backendVars} />
18
                    <Groups />
19
          <Groups />
19
                    <SocialNetworks className='sidebar-apps__widget' />
20
          <SocialNetworks className="sidebar-apps__widget" />
20
                </Sidebar>
-
 
21
                <FeedSection
21
        </Sidebar>
22
                    routeTimeline={routeTimeline}
-
 
23
                    backendVars={backendVars}
-
 
24
                />
22
        <FeedSection routeTimeline={routeTimeline} backendVars={backendVars} />
25
                <Aside>
23
        <Aside>
26
                    <PeopleYouMayKnow />
24
          <PeopleYouMayKnow />
27
                    <HomeNews classname='sidebar-apps__widget d-flex flex-column' />
25
          <HomeNews classname="sidebar-apps__widget d-flex flex-column" />
28
                </Aside>
26
        </Aside>
29
            </div>
27
      </div>
30
        </div>
28
    </div>
31
  )
29
  )
Línea 32... Línea 30...
32
}
30
}