Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelduarte077 committed May 15, 2021
1 parent c9da9be commit 7793829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/ContadorScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {StyleSheet, Text, TouchableOpacity, View} from 'react-native';
import {Fab} from '../components/Fab';

export const ContadorScreen = () => {
const [contador, setContador] = useState(10); // El useSate del contador
const [contador, setContador] = useState(0); // El useSate del contador

return (
<View style={styles.container}>
Expand Down

0 comments on commit 7793829

Please sign in to comment.