[ ADD ] react configuration
This commit is contained in:
14
react/src/components/Loader/Loader.js
Normal file
14
react/src/components/Loader/Loader.js
Normal file
@ -0,0 +1,14 @@
|
||||
import React from "react";
|
||||
import "./Loader.scss";
|
||||
|
||||
const Loader = () => {
|
||||
return (
|
||||
<div className="spinnerContainer d-flex justify-content-center align-items-center h-100">
|
||||
<div className="spinner-border text-primary" role="status">
|
||||
<span className="sr-only">Loading...</span>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Loader;
|
Reference in New Issue
Block a user