tomito26 / todolist

A simple todolist where users can create,update and delete their to dos'
https://tomito26.github.io/todolist/
0 stars 0 forks source link

Restrict users. "Cannot add an empty task" #1

Open OkomoJacob opened 2 years ago

OkomoJacob commented 2 years ago
OkomoJacob commented 2 years ago
addItem(event) {
    const text = prompt('TODO text please!');
    // only do this if text has value else return alert
    text && this.setState({
        todos: [...this.state.todos, { id: id++, text: text, checked: false }],
      });
  }