I have a DatePicker that has todayButton = Vandaag shown in the code and image below. I wanted to see if I can activate the todayButton by clicking on any of my select option instead of clicking Vandaag. I need some idea where to start. I appreciate any insight on this.
```<div className="status">
<select name="status" id="status">
<option selected>1</option>
<option>2</option>
</select></div>```
```DatePicker
todayButton="Vandaag"
selected={startDate}
onChange={(date) => setStartDate(date)}
/>```