import React from 'react'; const DateTimeDisplay = ({ value, type, isDanger }) => { return (

{value}

{type}
); }; export default DateTimeDisplay;