import React from "react"; import { Box, Typography } from "@mui/material"; import Card from "@mui/material/Card"; import styles from "@/components/eCommerce/OrderDetails/TrackOrder/TrackOrder.module.css"; const ActivityTimelineData = [ { id: "1", title: "Order Placed", date: "April 21 2019 07:22 AM", text: "There are many variations of passages of Lorem Ipsum available, but the majority have suffered.", }, { id: "2", title: "Packed", date: "April 22 2019 12:16 AM", text: "There are many variations of passages of Lorem Ipsum available, but the majority have suffered.", }, { id: "3", title: "Shipped", date: "April 22 2019 05:16 PM", text: "There are many variations of passages of Lorem Ipsum available, but the majority have suffered.", }, { id: "4", title: "Delivered", date: "Estimated Delivery Within 3 Days", text: "There are many variations of passages of Lorem Ipsum available, but the majority have suffered.", }, ]; const TrackOrder = () => { return ( <> Track Order Order ID: #VL2667 Tracking ID: 1004152012012
{ActivityTimelineData.slice(0, 4).map((timeline) => (

{timeline.title}

{timeline.date}

{timeline.text}

))}
); }; export default TrackOrder;