Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4267 Rev 4296
Línea 1... Línea 1...
1
/* eslint-disable react/prop-types */
1
/* eslint-disable react/prop-types */
2
import React from 'react'
2
import React from 'react'
3
import FeedSection from '../Feed/FeedSection'
3
import FeedSection from '../Feed/FeedSection'
-
 
4
import Sidebar from '../sidebar/Sidebar'
Línea 4... Línea 5...
4
 
5
 
5
const HomeSection = ({ routeTimeline, backendVars }) => {
6
const HomeSection = ({ routeTimeline, backendVars }) => {
6
    return (
7
    return (
7
        <div className='container px-0 py-4'>
8
        <div className='container px-0 py-4'>
-
 
9
            <div className='app__body layout__content'>
8
            <div className='app__body layout__content'>
10
                <Sidebar {...backendVars} />
9
                <FeedSection
11
                <FeedSection
10
                    routeTimeline={routeTimeline}
12
                    routeTimeline={routeTimeline}
11
                    backendVars={backendVars}
13
                    backendVars={backendVars}
12
                />
14
                />