Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. function ClusterSummary(props) {
  2. return (
  3. <ExpansionPanelSummary>
  4. <Typography>{props.cluster.title}</Typography>
  5. </ExpansionPanelSummary>
  6. );
  7. }
  8.  
  9. function Clusters(props) {
  10. return (
  11. <div>
  12. {props.clusters.map((cluster) =>
  13. <ExpansionPanel key={cluster.id} cluster={cluster}>
  14. {/* <ExpansionPanelSummary>
  15. <Typography>{cluster.title}</Typography>
  16. </ExpansionPanelSummary> */}
  17. <ClusterSummary key={cluster.id} cluster={cluster} />
  18. </ExpansionPanel>
  19. )}
  20. </div>
  21. );
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement