"use client" import React from 'react' import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, } from "@/components/ui/dialog" import { Progress } from "@/components/ui/progress" import { Loader2 } from "lucide-react" interface ImportProgressDialogProps { open: boolean totalRows: number processedRows: number } export function ImportProgressDialog({ open, totalRows, processedRows }: ImportProgressDialogProps) { const percentage = totalRows > 0 ? Math.round((processedRows / totalRows) * 100) : 0 return ( {}}> 데이터 Import 중... 잠시만 기다려주세요. 데이터를 처리하고 있습니다.
진행 상황 {processedRows} / {totalRows}건
{percentage}% 완료
) }