/** * Table Empty 컴포넌트 * * 데이터가 없을 때 표시되는 컴포넌트 */ export interface TableEmptyProps { text?: string; } export function TableEmpty({ text }: TableEmptyProps) { return (
{text ?? "데이터가 없습니다."}
); }