interface LoadingStateProps { message?: string; } export function LoadingState({ message = 'Loading...' }: LoadingStateProps) { return
{message}
; }