startDate
может не быть?const {startDate} = props
const obj = {
date: startDate ? new Date(startDate) : new Date()
}
const {startDate} = props
const obj = {
date: new Date(startDate) || new Date() // error startDate undefined
}