running prettier across the app

This commit is contained in:
Will Baumbach
2025-08-06 23:29:48 -05:00
parent 838068e759
commit bcd78e3f89
9 changed files with 14080 additions and 14097 deletions

View File

@@ -1,30 +1,30 @@
import { Link, Stack } from 'expo-router';
import { StyleSheet, View } from 'react-native';
import { Link, Stack } from 'expo-router'
import { StyleSheet, View } from 'react-native'
export default function NotFoundScreen() {
return (
<>
<Stack.Screen options={{ headerShown: false }} />
<View style={styles.container}>
<Link href="./" style={styles.button}>
Go back to Home screen!
</Link>
</View>
</>
);
return (
<>
<Stack.Screen options={{ headerShown: false }} />
<View style={styles.container}>
<Link href='./' style={styles.button}>
Go back to Home screen!
</Link>
</View>
</>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#25292e',
justifyContent: 'center',
alignItems: 'center',
},
container: {
flex: 1,
backgroundColor: '#25292e',
justifyContent: 'center',
alignItems: 'center'
},
button: {
fontSize: 20,
textDecorationLine: 'underline',
color: '#fff',
},
});
button: {
fontSize: 20,
textDecorationLine: 'underline',
color: '#fff'
}
})