Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. import React, { Component } from 'react'
  2. import { Container, Button, Icon, Image as ImageComponent, Item, Checkbox, Divider, List, TextArea, Grid} from 'semantic-ui-react'
  3.  
  4. class Card extends Component {
  5.  
  6. render() {
  7. return(
  8. <Container>
  9. <Item fluid>
  10. <Item.Header>
  11. <h2> Nº POSTE CIA ELÉCTRICA A</h2>
  12. </Item.Header>
  13. <Item.Image src='http://via.placeholder.com/300.png/09f/fff' />
  14. <Item.Content>
  15. <Item.Extra>
  16. <Button color='orange'>Subir foto</Button>
  17. <Checkbox label='Completar después' />
  18. </Item.Extra>
  19. </Item.Content>
  20. </Item>
  21. <Divider />
  22. <Button color='blue' floated='right'>Agregar Item</Button>
  23. <h2>Items observables</h2>
  24. <Grid celled>
  25. <Grid.Row>
  26. <Grid.Column>
  27. <h4>Condición</h4>
  28. </Grid.Column>
  29. </Grid.Row>
  30. <Grid.Row>
  31. <Grid.Column >
  32. <Checkbox label='Cumple' />
  33. </Grid.Column>
  34. </Grid.Row>
  35. <Grid.Row>
  36. <Grid.Column >
  37. <h4>Detalle</h4>
  38. </Grid.Column>
  39. </Grid.Row>
  40. <Grid.Row>
  41. <Grid.Column >
  42. <TextArea placeholder='Escriba aquí' fluid />
  43. </Grid.Column>
  44. </Grid.Row>
  45. </Grid>
  46. <Divider />
  47. <Button.Group fluid>
  48. <Button color='blue' labelPosition='left' icon='left chevron' content='Anterior' />
  49. <Button color='orange' content='Finalizar' />
  50. <Button color='blue' labelPosition='right' icon='right chevron' content='Siguiente' />
  51. </Button.Group>
  52. </Container>
  53. )
  54. }
  55. }
  56.  
  57. export default Card
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement