Files
BASE_REACT_PROJECT/src/common/components/display/table/TableEmpty.tsx
2026-01-30 09:01:27 +09:00

17 lines
348 B
TypeScript

/**
* Table Empty 컴포넌트
*
* 데이터가 없을 때 표시되는 컴포넌트
*/
export interface TableEmptyProps {
text?: string;
}
export function TableEmpty({ text }: TableEmptyProps) {
return (
<div style={{ padding: 12, textAlign: "center", color: "#888" }}>
{text ?? "데이터가 없습니다."}
</div>
);
}