We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51c2949 commit a6d2692Copy full SHA for a6d2692
2 files changed
src/components/Loader/Loader.jsx
@@ -0,0 +1,14 @@
1
+export default function Loader() {
2
+ return (
3
+ <div
4
+ className="flex place-items-center justify-center min-h-screen"
5
+ role="status"
6
+ aria-live="polite"
7
+ >
8
+ <div className="relative">
9
+ <div className="w-16 h-16 border-4 border-gray-200 border-t-blue-600 rounded-full animate-spin"></div>
10
+ <span className="sr-only">Loading content ...</span>
11
+ </div>
12
13
+ );
14
+}
src/components/Loader/index.js
@@ -0,0 +1 @@
+export { default } from './Loader';
0 commit comments