Is there any way to change the month dropdown on react-datepicker to show number instead of the name itself?

So I have here

 <DatePicker
   selected={value?.toDate()}
   onChange={(date) => this.handleMonthChange(date)}
   inline
   dateFormat={this.props.formatString}
   />

enter image description here

I want to achieve that instead of Jan. It will display 01, and so on for other months. Thank you