Sha256: e204dafcf1ebba5d499ef63c89d59d3411ce761f131051464274d402e96ff767
Contents?: true
Size: 399 Bytes
Versions: 16
Compression:
Stored size: 399 Bytes
Contents
import React from 'react'; import IndexTasks from './IndexTasks'; import ShowTask from './ShowTask'; const ForemanTasksRoutes = { indexTasks: { path: '/foreman_tasks/ex_tasks', exact: true, render: props => <IndexTasks {...props} />, }, showTask: { path: '/foreman_tasks/ex_tasks/:id', render: props => <ShowTask {...props} />, }, }; export default ForemanTasksRoutes;
Version data entries
16 entries across 16 versions & 1 rubygems