diff --git a/src/App.js b/src/App.js index 4ac6b9b..1488b4d 100644 --- a/src/App.js +++ b/src/App.js @@ -152,6 +152,11 @@ class App extends Component { } renderTodos() { const { todos } = this.state + + if (!todos || !todos.length) { + return null + } + return todos.map((todo, i) => { const { data, ref } = todo const id = getTodoId(todo)