import { Progress } from '@/components/ui/progress'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import React from 'react'; export function ProgressLabels() { const tasks = [ { label: 'Installing dependencies', progress: 100 }, { label: 'Building application', progress: 75 }, { label: 'Running tests', progress: 45 }, { label: 'Deploying to production', progress: 0 }, ]; return ( {tasks.map((task, index) => ( {task.label} {task.progress}% ))} Overall Progress 55% 2 of 4 tasks completed ); }