Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 12269 Rev 12274
Línea 1... Línea 1...
1
/* eslint-disable no-mixed-spaces-and-tabs */
1
/* eslint-disable no-mixed-spaces-and-tabs */
2
import React, { useState, useEffect } from 'react'
2
import React, { useState, useEffect } from 'react'
-
 
3
import axios from 'axios'
3
import { Card } from 'react-bootstrap'
4
import { Card } from 'react-bootstrap'
-
 
5
import { useDispatch } from 'react-redux'
-
 
6
import { useHistory } from 'react-router-dom'
4
import { LengthFilter, SearchInput, Table, TablePagination } from '../../../recruitment_and_selection/components/TableComponents'
7
import { LengthFilter, SearchInput, Table, TablePagination } from '../../../recruitment_and_selection/components/TableComponents'
5
import { addNotification } from '../../../redux/notification/notification.actions'
8
import { addNotification } from '../../../redux/notification/notification.actions'
6
import DeleteModal from '../../../shared/DeleteModal'
9
import DeleteModal from '../../../shared/DeleteModal'
7
import axios from 'axios'
-
 
8
import { useDispatch } from 'react-redux'
-
 
Línea 9... Línea 10...
9
 
10
 
10
const headers = [
11
const headers = [
11
	{ key: 'last_date', label: 'Último día', isSorteable: true },
12
	{ key: 'last_date', label: 'Último día', isSorteable: true },
12
	{ key: 'form', label: 'Nombre del Formulario', isSorteable: true },
13
	{ key: 'form', label: 'Nombre del Formulario', isSorteable: true },
Línea 23... Línea 24...
23
	setActionLink
24
	setActionLink
24
}) => {
25
}) => {
Línea 25... Línea 26...
25
 
26
 
26
	//Hooks
27
	//Hooks
-
 
28
	const dispatch = useDispatch()
Línea 27... Línea 29...
27
	const dispatch = useDispatch()
29
	const history = useHistory()
28
 
30
 
29
	//State
31
	//State
30
	const [modalToShow, setModalToShow] = useState('')
32
	const [modalToShow, setModalToShow] = useState('')