import { ScrollView, View } from 'react-native'; import { UI } from '@/constants/uiTheme'; const COL_W = 216; export function PipelineSkeleton() { return ( {Array.from({ length: 4 }).map((_, col) => ( {Array.from({ length: 3 }).map((__, row) => ( ))} ))} ); }