Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6775 Rev 6777
Línea 1... Línea 1...
1
import React, { useEffect, useState } from 'react'
1
import React, { useEffect, useState } from 'react'
2
import { useSelector } from 'react-redux'
2
import { useSelector } from 'react-redux'
3
import parse from 'html-react-parser'
-
 
4
import IconButton from '@mui/material/IconButton'
3
import IconButton from '@mui/material/IconButton'
5
import EditIcon from '@mui/icons-material/Edit'
4
import EditIcon from '@mui/icons-material/Edit'
Línea 6... Línea 5...
6
 
5
 
7
import OverviewModal from './OverviewModal'
6
import OverviewModal from './OverviewModal'
Línea 30... Línea 29...
30
              <EditIcon />
29
              <EditIcon />
31
            </IconButton>
30
            </IconButton>
32
          )}
31
          )}
33
        </div>
32
        </div>
34
        {overview ? (
33
        {overview ? (
35
          parse(overview)
34
          <p>{overview}</p>
36
        ) : (
35
        ) : (
37
          <EmptySection align="left" message={labels.empty} />
36
          <EmptySection align="left" message={labels.empty} />
38
        )}
37
        )}
39
      </div>
38
      </div>
40
      <OverviewModal
39
      <OverviewModal