Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 10452 Rev 10457
Línea 5... Línea 5...
5
const InterviewRoutes = ({ backendVars }) => {
5
const InterviewRoutes = ({ backendVars }) => {
Línea 6... Línea 6...
6
 
6
 
7
	return (
7
	return (
8
		<Router>
8
		<Router>
9
			<Switch>
-
 
10
				<Route
9
			<Switch>
11
					path='/recruitment-and-selection/interview/form'
10
				<Route path='/recruitment-and-selection/interview/form'>
12
					component={() => <MainView backendVars={backendVars} />}
-
 
13
				/>
11
					<MainView backendVars={backendVars} />
14
				<Route
12
				</Route>
15
					path='/recruitment-and-selection/interview/form/:id/file'
13
				<Route path='/recruitment-and-selection/interview/form/:id/file'>
16
					component={() => <h1>Evaluación</h1>}
14
					<h1>Evaluación</h1>
17
				/>
15
				</Route>
18
			</Switch>
16
			</Switch>
19
		</Router>
17
		</Router>
20
	)
18
	)
21
}
19
}
22
export default InterviewRoutes
20
export default InterviewRoutes