Advertisement
raulghm

U3 Artículo1 SE7

Feb 17th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. pickButton() {
  2.     if (this.state.section === 'todoList') {
  3.       return (
  4.         <Button
  5.           onPress={() => { this.changeStateSection('addTodo'); }}
  6.           title="Add Todo"
  7.         />
  8.       );
  9.     }
  10.  
  11.     return (
  12.       <Button
  13.         onPress={() => { this.changeStateSection('todoList'); }}
  14.         title="Cancel"
  15.       />
  16.     );
  17.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement