import { Col, Row } from "antd"; import ProText from "components/ProText"; import { useTranslation } from "react-i18next"; import { colors } from "ThemeConstants"; export default function Stepper() { const { t } = useTranslation(); return ( <>
{" "}
{" "} {t("order.reserved")} {t("order.prepare")} {t("order.ready")}
); }