Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. import React from 'react';
  2. import Grafik from '../../components/elements/Grafik';
  3. import PersistentPageBase from '../../components/layouts/PersistentPageBase';
  4. import Grid from '@material-ui/core/Grid';
  5. import Cards from '../../components/elements/Cards';
  6. import { Container } from '@material-ui/core';
  7. class Component extends React.Component {
  8. render() {
  9. return (
  10. <PersistentPageBase>
  11. <Container>
  12. <Grid container spacing={3}>
  13. <Grid item xs={12}>
  14. {' '}
  15. <Grafik />
  16. </Grid>
  17. <Grid item xs>
  18. {' '}
  19. <Cards />
  20. </Grid>
  21. <Grid item xs>
  22. {' '}
  23. <Cards />
  24. </Grid>
  25. <Grid item xs>
  26. {' '}
  27. <Cards />
  28. </Grid>
  29. </Grid>
  30. </Container>
  31. </PersistentPageBase>
  32. );
  33. }
  34. }
  35.  
  36. export default Component;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement