diff options
Diffstat (limited to 'src/components/SubscriberTable/SubscriberTable.tsx')
| -rw-r--r-- | src/components/SubscriberTable/SubscriberTable.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/SubscriberTable/SubscriberTable.tsx b/src/components/SubscriberTable/SubscriberTable.tsx index a666284..b07c75d 100644 --- a/src/components/SubscriberTable/SubscriberTable.tsx +++ b/src/components/SubscriberTable/SubscriberTable.tsx @@ -8,6 +8,7 @@ interface ChannelDataProp { sub_org: string; video_count: number; day_diff: number; + views: number; } interface SubscriberDataTableProp { @@ -42,6 +43,9 @@ return ( <th scope="col" className="py-1 px-1 sm:px-3 hidden sm:table-cell"> VIDEO COUNT </th> + <th scope="col" className="py-1 px-1 sm:px-3 hidden sm:table-cell"> + VIEW COUNT + </th> <th scope="col" className="py-1 px-1 sm:px-3"> SUBSCRIBERS </th> |
