'use client' import * as React from 'react' interface RPAInfoProps { tableName: string count: number } export function RPAInfo({ tableName, count }: RPAInfoProps) { return (
테이블명: {tableName}
현재 데이터: {count}건
지원 파일: .xlsx, .xls
) }