Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

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