mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-12 19:55:14 +02:00
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
interface LoadingStateProps {
|
|||
message?: string;
|
|||
}
|
|||
|
|||
export function LoadingState({ message = 'Loading...' }: LoadingStateProps) {
|
|||
return <div className="loading">{message}</div>;
|
|||
}
|