Proyectos de Subversion LeadersLinked - SPA

Rev

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

Rev 3040 Rev 3694
Línea 1... Línea 1...
1
import React from 'react'
1
import React from 'react';
2
import { Box, IconButton, Typography } from '@mui/material'
2
import { Box, IconButton, Typography } from '@mui/material';
-
 
3
import Edit from '@mui/icons-material/Edit';
3
import { Edit, Delete } from '@mui/icons-material'
4
import Delete from '@mui/icons-material/Delete';
Línea 4... Línea 5...
4
 
5
 
5
import { parse } from '@utils'
6
import { parse } from '@utils';
Línea 6... Línea 7...
6
import { getMonthName } from '@utils/dates'
7
import { getMonthName } from '@utils/dates';
7
 
8
 
8
export default function ExperienceItem({
9
export default function ExperienceItem({
9
  experience = {},
10
  experience = {},
Línea 20... Línea 21...
20
    formatted_adress,
21
    formatted_adress,
21
    from_month,
22
    from_month,
22
    from_year,
23
    from_year,
23
    to_month,
24
    to_month,
24
    to_year
25
    to_year
25
  } = experience
26
  } = experience;
26
  const industryName = typeof industry === 'object' ? industry.name : industry
27
  const industryName = typeof industry === 'object' ? industry.name : industry;
Línea 27... Línea 28...
27
 
28
 
28
  return (
29
  return (
29
    <Box
30
    <Box
30
      sx={{
31
      sx={{
Línea 67... Línea 68...
67
            <Delete />
68
            <Delete />
68
          </IconButton>
69
          </IconButton>
69
        </Box>
70
        </Box>
70
      )}
71
      )}
71
    </Box>
72
    </Box>
72
  )
73
  );
73
}
74
}