Repository URL to install this package:
|
Version:
2.1.14 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
const tslib_1 = require("tslib");
const react_1 = tslib_1.__importDefault(require("react"));
const styled_1 = require("./styled");
function defaultRenderDeliveryInformation(props) {
return react_1.default.createElement(styled_1.StyledButton, {
text: 'change date'
});
}
exports.defaultRenderDeliveryInformation = defaultRenderDeliveryInformation;
function defaultRenderOrderInformation(props) {
const {
item
} = props;
const {
orderInformation
} = item;
return react_1.default.createElement(styled_1.StyledDetailedList, {
list: orderInformation
});
}
exports.defaultRenderOrderInformation = defaultRenderOrderInformation;