A component for React. It's showing an icon with pulsating circle and hides the entire page in a semi-transparent color. It could take the next props: title and description.
Get component from src/pulsating-loader/Loader.js
import PulsatingLoader from './pulsating-loader/Loader';
function App() {
return (
<>
<PulsatingLoader />
</>
);
}
export default App;