source: frontend/src/components/CheckoutSteps.js@ 55ed171

Last change on this file since 55ed171 was 16237c4, checked in by Nace Gjorgjievski <nace.gorgievski123@…>, 22 months ago

Added Order Functionality

  • Property mode set to 100644
File size: 519 bytes
Line 
1import React from "react";
2import Row from "react-bootstrap/Row";
3import Col from "react-bootstrap/Col";
4
5function CheckoutSteps(props) {
6 return (
7 <Row className="checkout-steps">
8 <Col className={props.step1 ? "active" : ""}>Најава</Col>
9 <Col className={props.step2 ? "active" : ""}>Адреса</Col>
10 <Col className={props.step3 ? "active" : ""}>Плаќање</Col>
11 <Col className={props.step4 ? "active" : ""}>Потврди</Col>
12 </Row>
13 );
14}
15
16export default CheckoutSteps;
Note: See TracBrowser for help on using the repository browser.