Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. import React from "react";
  2. import Container from "react-bootstrap/Container";
  3. import Row from "react-bootstrap/Row";
  4. import Col from "react-bootstrap/Col";
  5.  
  6. export default function Grid() {
  7. return (
  8. <Container>
  9. <Row>
  10. <Col xs={6}>content</Col>
  11. </Row>
  12. </Container>
  13. );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement