Need help please... I have a fetchData function, getting the data from the DB Table Matricula, I just need to capture the records that have the date = Today
How can I only receive data where the date is the same as the current day?
class Matricula extends Component {
    state = {
        datos:[],
        today: new Date()
    }
    componentDidMount = () => {
    this.fetchData()
    }
    fetchData = async () => {
        try {
          const response = await getAll('matricula') 
          console.log("ver: ", response.data); 
          if (response.data.fecha.toLocaleString() === this.state.today.toLocaleDateString()) { // no se que me falta
          this.setState({
            status: "done",
            datos: response.data,
          });
        }
        } catch (error) {
          this.setState({
            status: "error"
          });
        }
      };
    render() {
        const data = this.state.matriculas;
        return (
                <ReactTable 
                    data={data} 
                    contentEditable
                    filterable
                    collapseOnDataChange={false}
          columns={[
                {
                  Header: "Id",
                  accessor: "id"
                },
                {
                  Header: "Name",
                  accessor: "Name"
                },
                {
                  Header: "Date",
                  accessor: "date",
                  id: "date",
                }
              ]
            }
          defaultPageSize={14}
          className="-striped -highlight"
        />
)}
export default Matricula;
the getAll funcion is export function getAll(entity){ return axios({ method: 'get', baseURL: API_URL, headers: headers(), url: entity, }) }
 
    