Sha256: ae38c7a7c33945f4768ce5c698464fe683c048f02098b3de84bbc9cf594e4536
Contents?: true
Size: 636 Bytes
Versions: 23
Compression:
Stored size: 636 Bytes
Contents
import React from 'react'; import JobWizardPage from '../JobWizard'; import JobWizardPageRerun from '../JobWizard/JobWizardPageRerun'; import JobInvocationDetailPage from '../JobInvocationDetail'; const ForemanREXRoutes = [ { path: '/job_invocations/new', exact: true, render: props => <JobWizardPage {...props} />, }, { path: '/job_invocations/:id/rerun', exact: true, render: props => <JobWizardPageRerun {...props} />, }, { path: '/experimental/job_invocations_detail/:id', exact: true, render: props => <JobInvocationDetailPage {...props} />, }, ]; export default ForemanREXRoutes;
Version data entries
23 entries across 23 versions & 1 rubygems