Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. //a
  2. <SectionsEditor
  3. assetState={assetState}
  4. dispatchToAssetState={dispatchToAssetState}
  5. key={index}
  6. section={section}
  7. sectionIndex={index}
  8. canAddSection={canAddSection}
  9. canMoveSection={canMoveSection}
  10. canRemoveSection={canRemoveSection}
  11. canAddQuestion={canAddQuestion}
  12. />,
  13.  
  14. // b
  15.  
  16. <SectionsEditor
  17. key={sectionIndex}
  18. {...{
  19. assetState,
  20. canAddSection,
  21. canMoveSection,
  22. canRemoveSection,
  23. canAddQuestion,
  24. section,
  25. sectionIndex,
  26. dispatchToAssetState,
  27. }}
  28. />,
  29.  
  30.  
  31. // c
  32.  
  33. <SectionsEditor
  34. key={sectionIndex}
  35. {...{ assetState, canAddSection, canMoveSection, canRemoveSection, canAddQuestion, section, sectionIndex, dispatchToAssetState, }}
  36. />,
  37.  
  38.  
  39. // d
  40.  
  41. <SectionsEditor {...{
  42. key: sectionIndex,
  43. canAddSection, canMoveSection, canRemoveSection, canAddQuestion,
  44. assetState, section, sectionIndex, dispatchToAssetState
  45. }} />,
  46.  
  47.  
  48. // e
  49.  
  50. <SectionsEditor
  51. {...{
  52. key: sectionIndex,
  53. canAddSection, canMoveSection, canRemoveSection, canAddQuestion,
  54. assetState, section, sectionIndex, dispatchToAssetState
  55. }}
  56. />,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement