In the below React component, why will defaultValue={time} work, but defaultValue={time / 2} will not (will display empty input)?
defaultValue={time}
defaultValue={time / 2}
Please not