| 241 | }; |
| 242 | |
| 243 | interface EntityListProps<T> { |
| 244 | items: T[]; |
| 245 | renderItem: (item: T, index: number) => React.ReactNode; |
| 246 | getKey?: (item: T, index: number) => string | number; |
| 247 | emptyView?: React.ReactNode; |
| 248 | className?: string; |
| 249 | }; |
| 250 | |
| 251 | export function EntityList<T>({ |
| 252 | items, |
nothing calls this directly
no outgoing calls
no test coverage detected