@procraft/widget-order
Version:
Order widget for landing
19 lines (14 loc) • 381 B
text/typescript
import { CatalogItem } from '../../interfaces'
type getItemPricesProps = {
catalogItem: CatalogItem
}
/**
* Получаем цены для курса.
* Они могут зависеть в том числе и от времени
*/
export const getItemPrices = ({ catalogItem }: getItemPricesProps) => {
// const {
// } = catalogItem;
catalogItem
return {}
}