1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-10 00:46:15 +01:00
fab-manager/app/frontend/src/javascript/components/base/loader.tsx

19 lines
429 B
TypeScript
Raw Normal View History

import React, { Suspense } from 'react';
/**
* This component is a wrapper that display a loader while the children components have their rendering suspended
*/
export const Loader: React.FC = ({children }) => {
const loading = (
<div className="fa-3x">
<i className="fas fa-circle-notch fa-spin" />
</div>
2021-06-08 17:26:40 +02:00
);// compile
return (
<Suspense fallback={loading}>
{children}
</Suspense>
);
}