Show only last 30 days from today in npm react-date-picker dynamically in react. Future dates from tomorrow should be disabled.
import DatePicker from "react-date-picker";
<DatePicker maxDate={new Date()} />
What exactly is the question? You can create a date 30 days from now in JavaScript as follows:
var futureDate = new Date();
futureDate.setDate(futureDate.getDate() + 30);