I am using this
<input type="date" value={defaultValue || "MM/DD/YYYY"} onChange={this.handleChange} />
How i can disable future dates (for birth-date) ?
NOTE:
I ended up solving this ,
var today = new Date().toISOString().split('T')[0];
<input type="date" onChange={this.handleChange} max={today} />