/** * Skeleton.tsx * * Simple loading indicator for CometChatNotificationFeed. * Shows a centered ActivityIndicator with "Loading..." text * while initial data is being fetched. * Matches Figma: node-id=8257:16800 (Loading indicator) */ import React from "react"; import { ActivityIndicator, Text, View } from "react-native"; import { useTheme } from "../theme"; import { getCometChatTranslation } from "../shared/resources/CometChatLocalizeNew/LocalizationManager"; const t = getCometChatTranslation(); export const Skeleton: React.FC = () => { const theme = useTheme(); return ( {t("LOADING")} ); };