| 3 | import "./LoadingIndicator.scss"; |
| 4 | |
| 5 | interface LoadingIndicatorProps { |
| 6 | loadingMessage?: string; |
| 7 | completedMessage?: string; |
| 8 | isLoading?: boolean; |
| 9 | } |
| 10 | |
| 11 | export function LoadingIndicator({ |
| 12 | loadingMessage = "Loading...", |
nothing calls this directly
no outgoing calls
no test coverage detected