Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4494 Rev 4495
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 '../../../../../dashboard/templates/linkedin/Feed/FeedSection'
3
import FeedSection from '../../../../../dashboard/templates/linkedin/Feed/FeedSection'
Línea 4... Línea 4...
4
 
4
 
5
const View = ({ backendVars, routeTimeline }) => {
5
const View = ({ backendVars }) => {
6
    return (
6
    return (
7
        <main className="w-100">
7
        <main className="w-100">
8
            <div className="container p-0 app__body layout__content">
8
            <div className="container p-0 app__body layout__content">
Línea 9... Línea 9...
9
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
9
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
10
 
10
 
11
                </div>
11
                </div>
12
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
12
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
13
                    <FeedSection
13
                    <FeedSection
14
                        routeTimeline={routeTimeline}
14
                        routeTimeline={backendVars.routeTimeline}
15
                        backendVars={backendVars}
15
                        backendVars={backendVars}
16
                    />
16
                    />