Skip to content

Commit

Permalink
chore: adding new tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
Naveen-g09 committed Jan 23, 2024
1 parent 17ac506 commit cea11e2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/(tabs)/account.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { View, Text } from 'react-native'
import React from 'react'

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

export default account
File renamed without changes.
12 changes: 12 additions & 0 deletions app/(tabs)/community.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { View, Text } from 'react-native'
import React from 'react'

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

export default community

0 comments on commit cea11e2

Please sign in to comment.