Files
logistics-app/src/components/Loading.tsx
2025-11-22 00:52:07 +04:00

14 lines
340 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from 'react';
const Loading: React.FC = () => {
return (
<div className="loading">
<div className="spinner-border text-primary" role="status">
<span className="visually-hidden">Загрузка...</span>
</div>
<p>Загрузка данных...</p>
</div>
);
};
export default Loading;