Skip to content

Commit da3c957

Browse files
committed
Remove unused imports from CaseContactListScreen
1 parent d34681e commit da3c957

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/screens/CaseContactListScreen.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
import { View, Text, FlatList} from 'react-native';
22
import tw from 'twrnc';
3-
import React from 'react';
43

54
import CaseContactListCard from '../components/CaseContactListCard';
65

76
const CaseContactListScreen = ({ navigation }) => {
87
const data = [{ name: '🦋CINA-11-1002' }, { name: '🦋CINA-11-1003' }, { name: '🦋CINA-11-1004' }];
98

109
return (
11-
<>
1210
<View style={tw`flex items-center gap-3 flex-1 bg-[#d5d7da]`}>
1311
<View style={tw`flex-col justify-center h-1/5`}>
1412
<Text style={tw`text-3xl font-bold`}>MY CASES</Text>
@@ -29,8 +27,7 @@ const CaseContactListScreen = ({ navigation }) => {
2927
/>
3028
</View>
3129
</View>
32-
</View>
33-
</>
30+
</View>
3431
);
3532
};
3633

0 commit comments

Comments
 (0)