import React from 'react' interface ShippingMethodProps { price?: string } const ShippingMethod: React.FC = ({ price }) => { return

Trunnekers: € {price}

} export default ShippingMethod