Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import argonTheme from '../constants/Theme';

const { height, width } = Dimensions.get('window');
const iPhoneX = () => Platform.OS === 'ios' && (height === 812 || width === 812 || height === 896 || width === 896);

//this is a comment
const BellButton = ({isWhite, style, navigation}) => (
<TouchableOpacity style={[styles.button, style]} onPress={() => navigation.navigate('Pro')}>
<Icon
Expand Down
14 changes: 14 additions & 0 deletions components/anythig.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { StyleSheet, Text, View } from 'react-native'
import React from 'react'

const anythig = () => {
return (
<View>
<Text>anythig</Text>
</View>
)
}

export default anythig

const styles = StyleSheet.create({})
14 changes: 14 additions & 0 deletions components/something.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { StyleSheet, Text, View } from 'react-native'
import React from 'react'

const something = () => {
return (
<View>
<Text>something</Text>
</View>
)
}

export default something

const styles = StyleSheet.create({})