|
1 | 1 | import React from 'react' |
2 | 2 | import { View, Text, TouchableOpacity, Image, StyleSheet, ScrollView } from 'react-native' |
3 | 3 | import { AppStyle } from '../../AppStyle'; |
4 | | -import { Component1, Component2, Component3, RightArrow } from '../../resources'; |
| 4 | +import { CallLogs, Call, RightArrow, CallParticipants, CallRecording, CallHistory } from '../../resources'; |
5 | 5 | import { CardView } from '../common/CardView'; |
6 | 6 |
|
7 | 7 | const CallLogsModules = [ |
8 | 8 | { |
9 | 9 | id: "CometChatCallLogs", |
10 | 10 | name: "Call Logs Listing", |
11 | 11 | info: "CometChatCallLogs is a widget which is used to display list of Call Logs.", |
12 | | - image: Component1 |
| 12 | + image: Call |
13 | 13 | }, |
14 | 14 | { |
15 | 15 | id: "CometChatCallLogsWithDetails", |
16 | 16 | name: "Call Logs With Details", |
17 | 17 | info: "CometChatCallLogsWithDetails is a widget which is used to display list of Call Logs with an icon to display call details.", |
18 | | - image: Component2 |
| 18 | + image: CallLogs |
19 | 19 | }, |
20 | 20 | { |
21 | 21 | id: "CometChatCallLogDetails", |
22 | 22 | name: "Call Log Details", |
23 | 23 | info: "CometChatCallLogDetails is a widget which is used to display call detail of a particular callLog.", |
24 | | - image: Component3 |
| 24 | + image: CallLogs |
25 | 25 | }, |
26 | 26 | { |
27 | 27 | id: "CometChatCallLogParticipants", |
28 | 28 | name: "Call Log Participants", |
29 | 29 | info: "CometChatCallLogParticipants is a widget that displays list of participants for a particular Call.", |
30 | | - image: Component3 |
| 30 | + image: CallParticipants |
31 | 31 | }, |
32 | 32 | { |
33 | 33 | id: "CometChatCallLogRecordings", |
34 | 34 | name: "Call Log Recordings", |
35 | 35 | info: "CometChatCallLogRecordings is a widget that displays list of recordings for a particular Call.", |
36 | | - image: Component3 |
| 36 | + image: CallRecording |
37 | 37 | }, |
38 | 38 | { |
39 | 39 | id: "CometChatCallLogHistory", |
40 | 40 | name: "Call Log History", |
41 | 41 | info: "CometChatCallLogHistory is a widget which is used to display list of call history for a particular user or group.", |
42 | | - image: Component3 |
| 42 | + image: CallHistory |
43 | 43 | } |
44 | 44 | ]; |
45 | 45 |
|
|
0 commit comments