export default class App extends React.Component {
  constructor() {
    super();
    this.state = {
      todos: 5
    };
  }
  handleClick = () => {
    this.setState({ todos: this.state.todos + 1 });
  };
  render() {
    return (
      <div className="App">
        <h1>ToDo List</h1>
        <p>Just keep giving me things to do</p>
        <p>I still have {this.state.todos} things to do</p>
        <AddTodo todos={this.state.todos} handleClick={this.handleClick} />
      </div>
    );
  }
}
I am trying to update <p>I still have {this.state.todos} things to do</p> in the Parent to increase by 1 for every button click in the Child Component. What am I missing? I am not getting any errors but it is not functional.
import React from "react";
export default function AddTodo(handleClick) {
  return (
    <div className="AddTodo">
      <button onClick={() => handleClick}>Add Another</button>
    </div>
  );
}
 
    