Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15098 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15098 Rev 15101
Línea 9... Línea 9...
9
	const [action, setAction] = useState('')
9
	const [action, setAction] = useState('')
Línea 10... Línea 10...
10
 
10
 
11
	return (
11
	return (
12
		<ContentTitle title='Pruebas'>
12
		<ContentTitle title='Pruebas'>
-
 
13
			{action
-
 
14
				? <EvaluationView
-
 
15
					actionLink={actionLink}
-
 
16
					setActionLink={setActionLink}
-
 
17
					action={action}
13
			{action
18
					setAction={setAction} />
14
				? <TableView
19
				: <TableView
15
					{...backendVars}
20
					{...backendVars}
16
					action={action}
21
					action={action}
17
					setAction={setAction}
22
					setAction={setAction}
18
					actionLink={actionLink}
23
					actionLink={actionLink}
19
					setActionLink={setActionLink} />
-
 
20
				: <EvaluationView
-
 
21
					actionLink={actionLink}
-
 
22
					setActionLink={setActionLink}
-
 
23
					action={action}
-
 
24
					setAction={setAction} />
24
					setActionLink={setActionLink} />
25
			}
25
			}
26
		</ContentTitle>
26
		</ContentTitle>
27
	)
27
	)