| | |
| | | import jam from './jam'; |
| | | import action from './action'; |
| | | import mission from "./mission"; |
| | | import staReserve from './staReserve'; |
| | | import lane from './lane'; |
| | | import integrationRecord from './integrationRecord'; |
| | | import guarantee from './guarantee'; |
| | | |
| | | const ResourceContent = (node) => { |
| | | switch (node.component) { |
| | |
| | | return action; |
| | | case 'mission': |
| | | return mission; |
| | | case 'staReserve': |
| | | return staReserve; |
| | | case 'lane': |
| | | return lane; |
| | | case 'integrationRecord': |
| | | return integrationRecord; |
| | | case 'guarantee': |
| | | return guarantee; |
| | | default: |
| | | return { |
| | | list: ListGuesser, |