Repository URL to install this package:
|
Version:
2.1.12 ▾
|
import React from 'react'
import {
SubscriptionOrderInformationProps,
} from './typings'
import {
StyledDetailedList,
StyledButton,
} from './styled'
function defaultRenderDeliveryInformation(props: SubscriptionOrderInformationProps) {
return <StyledButton text={'change date'} />
}
function defaultRenderOrderInformation(props: SubscriptionOrderInformationProps) {
const { item } = props
const { orderInformation } = item
return <StyledDetailedList list={orderInformation} />
}
export { defaultRenderOrderInformation, defaultRenderDeliveryInformation }