Línea -... |
Línea 1... |
- |
|
1 |
/* eslint-disable no-mixed-spaces-and-tabs */
|
1 |
import React, { useState, useEffect } from 'react'
|
2 |
import React, { useState, useEffect } from 'react'
|
2 |
import axios from 'axios'
|
3 |
import axios from 'axios'
|
3 |
import { Card } from 'react-bootstrap'
|
4 |
import { Card } from 'react-bootstrap'
|
4 |
import { LengthFilter, SearchInput, Table, TablePagination } from '../../components/TableComponents'
|
5 |
import { LengthFilter, SearchInput, Table, TablePagination } from '../../components/TableComponents'
|
5 |
import { Link, useHistory } from 'react-router-dom'
|
6 |
import { Link, useHistory } from 'react-router-dom'
|
6 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
7 |
import { addNotification } from '../../../redux/notification/notification.actions'
|
7 |
import { useDispatch } from 'react-redux'
|
8 |
import { useDispatch } from 'react-redux'
|
8 |
import DeleteModal from '../../../shared/DeleteModal'
|
9 |
import DeleteModal from '../../../shared/DeleteModal'
|
9 |
import ContentTitle from '../../../shared/ContentTitle'
|
- |
|
Línea 10... |
Línea 10... |
10 |
|
10 |
|
11 |
const headers = [
|
11 |
const headers = [
|
12 |
{ key: "name", label: "Nombre", isSorteable: true },
|
12 |
{ key: 'name', label: 'Nombre', isSorteable: true },
|
13 |
{ key: "email", label: "Correo electrónico", isSorteable: true },
|
13 |
{ key: 'email', label: 'Correo electrónico', isSorteable: true },
|
14 |
{ key: "type", label: "Entrevistado por", isSorteable: true },
|
14 |
{ key: 'type', label: 'Entrevistado por', isSorteable: true },
|
15 |
{ key: "vacancy", label: "Vacantes", isSorteable: true },
|
15 |
{ key: 'vacancy', label: 'Vacantes', isSorteable: true },
|
16 |
{ key: "points", label: "Evaluación", isSorteable: true },
|
16 |
{ key: 'points', label: 'Evaluación', isSorteable: true },
|
17 |
{ key: "actions", label: "Acciones", isSorteable: false }
|
17 |
{ key: 'actions', label: 'Acciones', isSorteable: false }
|
Línea 18... |
Línea 18... |
18 |
]
|
18 |
]
|
Línea 219... |
Línea 220... |
219 |
/>
|
220 |
/>
|
220 |
</>
|
221 |
</>
|
221 |
)
|
222 |
)
|