Sha256: 5edbadab37da15ec550010a9c96787754df27203829f281832e44795d4ce18ac
Contents?: true
Size: 1.24 KB
Versions: 10
Compression:
Stored size: 1.24 KB
Contents
import React from 'react'; import OvalContentsIndex from './OvalContents/OvalContentsIndex'; import OvalContentsShow from './OvalContents/OvalContentsShow'; import OvalContentsNew from './OvalContents/OvalContentsNew'; import OvalPoliciesIndex from './OvalPolicies/OvalPoliciesIndex'; import OvalPoliciesNew from './OvalPolicies/OvalPoliciesNew'; import OvalPoliciesShow from './OvalPolicies/OvalPoliciesShow'; import { ovalContentsPath, ovalContentsShowPath, ovalContentsNewPath, ovalPoliciesPath, ovalPoliciesShowPath, ovalPoliciesNewPath, } from '../helpers/pathsHelper'; export default [ { path: ovalContentsPath, render: props => <OvalContentsIndex {...props} />, exact: true, }, { path: ovalContentsNewPath, render: props => <OvalContentsNew {...props} />, exact: true, }, { path: ovalContentsShowPath, render: props => <OvalContentsShow {...props} />, exact: true, }, { path: ovalPoliciesPath, render: props => <OvalPoliciesIndex {...props} />, exact: true, }, { path: ovalPoliciesNewPath, render: props => <OvalPoliciesNew {...props} />, exact: true, }, { path: ovalPoliciesShowPath, render: props => <OvalPoliciesShow {...props} />, exact: true, }, ];
Version data entries
10 entries across 10 versions & 1 rubygems