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