Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6777 Rev 6779
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'
3
import IconButton from '@mui/material/IconButton'
4
import IconButton from '@mui/material/IconButton'
4
import EditIcon from '@mui/icons-material/Edit'
5
import EditIcon from '@mui/icons-material/Edit'
Línea 5... Línea 6...
5
 
6
 
6
import OverviewModal from './OverviewModal'
7
import OverviewModal from './OverviewModal'
Línea 29... Línea 30...
29
              <EditIcon />
30
              <EditIcon />
30
            </IconButton>
31
            </IconButton>
31
          )}
32
          )}
32
        </div>
33
        </div>
33
        {overview ? (
34
        {overview ? (
34
          <p>{overview}</p>
35
          parse(overview)
35
        ) : (
36
        ) : (
36
          <EmptySection align="left" message={labels.empty} />
37
          <EmptySection align="left" message={labels.empty} />
37
        )}
38
        )}
38
      </div>
39
      </div>
39
      <OverviewModal
40
      <OverviewModal