Skip to content

Commit

Permalink
Refactor code for better performance
Browse files Browse the repository at this point in the history
  • Loading branch information
Naveen-g09 committed Jan 26, 2024
1 parent b52a05c commit b3c2a9b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions app/(tabs)/community.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { View, Text } from 'react-native';
import React from 'react';

//TODO: add a notification icon
//TODO: add a bottomsheet onpress of details tab which shows details of resident
//TODO: add grids for posts, members, and events, chats, notices, posts, announcements, and polls

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

export default Community;

0 comments on commit b3c2a9b

Please sign in to comment.