import React from 'react'; import { Skeleton } from '@/components/ui/skeleton'; export function LiveViewSkeleton() { return (
{[1, 2, 3].map((i) => ( ))}
{[1, 2, 3, 4, 5].map((i) => ( ))}
); }