import clsx from 'clsx'; import { useAppSelector } from '@akinon/next/redux/hooks'; import { partAttrs } from '@akinon/pz-theme/src/utils/part-styles'; import { RootState } from '@theme/redux/store'; import Addresses from './addresses'; import ShippingOptions from './shipping-options'; const ShippingStep = () => { const isShippingStepBusy = useAppSelector( (state: RootState) => state.checkout.steps.shipping.busy ); return (
); }; export default ShippingStep;