import { Button, Card, Divider, Form, Input, Row } from "antd"; import ApartmentIcon from "components/Icons/address/ApartmentIcon"; import HouseIcon from "components/Icons/address/HouseIcon"; import OfficeIcon from "components/Icons/address/OfficeIcon"; import ProHeader from "components/ProHeader/ProHeader"; import ProText from "components/ProText"; import { selectTheme } from "features/theme/themeSlice"; import { OrderType } from "pages/checkout/hooks/types.ts"; import { useTranslation } from "react-i18next"; import { Link, useParams } from "react-router-dom"; import { useAppSelector } from "redux/hooks"; import { colors, ProBlack2, ProGray1 } from "ThemeConstants"; import { AddressSummary } from "../checkout/components/AddressSummary"; import styles from "./address.module.css"; import ProPhoneInput from "components/ProPhoneInput"; export default function AddressPage() { const { t } = useTranslation(); const { themeName } = useAppSelector(selectTheme); const [form] = Form.useForm(); const { subdomain } = useParams(); return ( <> {t("address.title")}
{" "}
); }