Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

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