Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. return (
  2. <div>
  3. <HeaderApp />
  4. <div>
  5. <h1>Choose a Service to Configurate.</h1>
  6. <div class="container">
  7. <div class="row">
  8. {this.state.services.map((service) => {
  9. return (<ul key={service.name}>
  10. <div className="col">
  11. <GenericCard cardTitle={service.name} cardSubTitle={'Click to check the files '}>
  12. <button type="button" className="btn btn-info" onClick={() => this.redirectToEnvironment(service)}>Configurate</button>
  13. </GenericCard>
  14. </div>
  15.  
  16. <div class="w-100"></div>
  17.  
  18. </ul>)
  19.  
  20. })}
  21. </div>
  22. </div>
  23. </div>
  24. </div>
  25. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement