Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6899 Rev 6902
Línea 6... Línea 6...
6
import { addNotification } from '../../redux/notification/notification.actions'
6
import { addNotification } from '../../redux/notification/notification.actions'
Línea 7... Línea 7...
7
 
7
 
8
import Overview from '../../components/overview/Overview'
8
import Overview from '../../components/overview/Overview'
Línea 9... Línea 9...
9
import GroupActions from '../../components/group/GroupActions'
9
import GroupActions from '../../components/group/GroupActions'
10
 
10
 
11
// import Type from '../../components/group/type/Type'
11
import Type from '../../components/group/type/Type'
12
import Website from '../../components/group/website/Website'
12
import Website from '../../components/group/website/Website'
13
import Privacy from '../../components/group/privacy/Privacy'
13
import Privacy from '../../components/group/privacy/Privacy'
Línea 52... Línea 52...
52
 
52
 
53
  return (
53
  return (
54
    <main className="w-100">
54
    <main className="w-100">
55
      <div className="container">
55
      <div className="container">
-
 
56
        <div className="main d-flex flex-column" style={{ gap: '1rem' }}>
56
        <div className="main d-flex flex-column" style={{ gap: '1rem' }}>
57
          <GroupActions
-
 
58
            {...backendVars}
-
 
59
            coverSize={backendVars?.imageSizeCover}
-
 
60
            imageSize={backendVars?.imageSizeProfile}
57
          <GroupActions {...backendVars} />
61
          />
58
          <Overview groupId={uuid} overview={backendVars?.overview} />
62
          <Overview groupId={uuid} overview={backendVars?.overview} />
59
          {/* <Type
63
          <Type
60
            groupId={uuid}
64
            groupId={uuid}
61
            groupType={backendVars?.groupType}
65
            type={backendVars?.groupType}
62
            groupTypes={backendVars?.groupTypes}
66
            types={backendVars?.groupTypes}
63
          /> */}
67
          />
64
          <Industry
68
          <Industry
65
            groupId={uuid}
69
            groupId={uuid}
66
            industry={backendVars?.industry}
70
            industry={backendVars?.industry}
67
            industries={backendVars?.industries}
71
            industries={backendVars?.industries}