- Added `ComponentMessageBinding` model to manage message components in the database. - Updated `WelcomeConfig`, `Tag`, and `ScheduledMessage` models to support new component fields. - Integrated component handling in various modules, including Scheduler and Tags, to improve message customization. - Enhanced user experience by implementing new commands for creating and managing component messages in the utility module. - Updated localization files to reflect new component-related features and improve user guidance.
14 lines
337 B
TypeScript
14 lines
337 B
TypeScript
import { Skeleton } from '@/components/ui/skeleton';
|
|
|
|
export default function MessagesLoading() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="space-y-2">
|
|
<Skeleton className="h-8 w-48" />
|
|
<Skeleton className="h-4 w-80" />
|
|
</div>
|
|
<Skeleton className="h-96 rounded-lg" />
|
|
</div>
|
|
);
|
|
}
|