Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4496 Rev 4497
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'
-
 
4
import GroupInfo from '../components/GroupInfo'
Línea 4... Línea 5...
4
 
5
 
5
const View = ({ backendVars }) => {
6
const View = ({ backendVars }) => {
6
    return (
7
    return (
7
        <main className="w-100">
8
        <main className="w-100">
8
            <div className="container p-0 app__body layout__content">
9
            <div className="container p-0 app__body layout__content">
-
 
10
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
-
 
11
                    <GroupInfo
-
 
12
                        cover={backendVars.cover}
-
 
13
                        image={backendVars.image}
-
 
14
                        name={backendVars.name}
-
 
15
                        overview={backendVars.overview}
9
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
-
 
-
 
16
                        groupId={backendVars.groupId}
-
 
17
                        totalMembers={backendVars.totalMembers}
-
 
18
                        groupType={backendVars.groupType}
-
 
19
                        accessibility={backendVars.accessibility}
10
 
20
                    />
11
                </div>
21
                </div>
12
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
22
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
13
                    <FeedSection
23
                    <FeedSection
14
                        routeTimeline={backendVars.routeTimeline}
24
                        routeTimeline={backendVars.routeTimeline}