I am new to reactJs and trying to implement the below idea -
A data table where data can be filtered by day of the month.
A calendar which will show only days of a month in a row (pagination/tab like view):
Selecting each days will filter the data of the table on the page
Next month can be selected by clicking on the month name appears on the end of the row and data will be filtered accordingly.
what I have tried -
- Use a react-bootstrap paginator
- Use a data table
I am finding it hard to figure our how can I implement the calendar and connect it as a filter with the data table. BTW, data of the table can be found from any database or some example data.
I hope I made it as clear as possible. Feel free to tell if I need to add something.