interface LoadingDisplayProps { message?: string; } const LoadingDisplay = ({ message }: LoadingDisplayProps) => { return(

{message || 'Loading...'}

) } export default LoadingDisplay;