Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4500 Rev 4513
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 AboutGroup from '../components/AboutGroup'
4
import AboutGroup from '../components/AboutGroup'
5
import GroupInfo from '../components/GroupInfo'
5
import GroupInfo from '../components/GroupInfo'
-
 
6
import Members from '../components/Members'
Línea 6... Línea 7...
6
 
7
 
7
const View = ({ backendVars }) => {
8
const View = ({ backendVars }) => {
8
    return (
9
    return (
9
        <main className="w-100">
10
        <main className="w-100">
Línea 28... Línea 29...
28
                            image: `/storage/type/group/code/${backendVars.groupId}/${backendVars.image ? `filename/${backendVars.image}` : ""}`
29
                            image: `/storage/type/group/code/${backendVars.groupId}/${backendVars.image ? `filename/${backendVars.image}` : ""}`
29
                        }}
30
                        }}
30
                    />
31
                    />
31
                </div>
32
                </div>
32
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
33
                <div className="d-flex flex-column" style={{ gap: '.5rem' }}>
-
 
34
                    <Members groupId={backendVars.groupId} />
33
                    <AboutGroup {...backendVars} />
35
                    <AboutGroup {...backendVars} />
34
                </div>
36
                </div>
35
            </div>
37
            </div>
36
        </main>
38
        </main>
37
    )
39
    )