React-native/알림 기능 추가
import {StyleSheet, View, Text, FlatList, Alert} from 'react-native'; const submitHandler = text => { if (text.length > 3) { setTodos(prevTodos => { return [{text: text, key: uuid().toString()}, ...prevTodos]; }); } else { Alert.alert('OOPS!', 'Todos must be over 3chars long...', [ {text: 'Understood', onPress: () => console.log('alert closed')}, {text: 'So What!', onPress: () => console.log('al..