Repository URL to install this package:
|
Version:
3.0.4 ▾
|
@skava/ui
/
src
/
components
/
presets
/
Subscription
/
SubscriptionOrderInformation
/
renderProps.tsx
|
|---|
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 }