@@ -3,6 +3,7 @@ import { ScrollView } from 'react-native';
 import AppStyle from '../../../theme/styles';
 import TODO_LISTS_ITEM from '../../../constants/TODO_LISTS_ITEM';
 import SimpleListItem from '../../../components/discover/view/SimpleListItem';
+import Launch from '../../../components/discover/Launch';
 
 class TodoLists extends Component {
   static componentName = 'TodoLists';
@@ -15,7 +16,11 @@ class TodoLists extends Component {
   }
   render() {
     const rows = this.state.data.map((val, index) => (
-      <SimpleListItem text={val.name} key={val.name.concat(index)} />));
+      <SimpleListItem
+        text={val.name}
+        click={() => Launch.todoList(val)}
+        key={val.name.concat(index)}
+      />));
     return <ScrollView style={AppStyle.detailBasisStyle}>{rows}</ScrollView>;
   }
 }