first commit

This commit is contained in:
NYD
2026-01-30 09:01:27 +09:00
commit d96fc95782
56 changed files with 7424 additions and 0 deletions

View File

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