import React from 'react'; function DateItem(props) { const { text } = props; return ( {text} ); } export default React.memo(DateItem);