import React from 'react'; import PropTypes from 'prop-types'; const DlRowContacts = (props) => (
Phone
340-702-6720
Mobile
363-999-9380
Fax
727-613-5840
Email
t.herald@gmail.com
Skype
t.herald
) DlRowContacts.propTypes = { leftSideClassName: PropTypes.node, rightSideClassName: PropTypes.node }; DlRowContacts.defaultProps = { leftSideClassName: "text-right", rightSideClassName: "text-left" }; export { DlRowContacts };