17 lines
348 B
TypeScript
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>
|
|
);
|
|
}
|