source: frontend/src/components/LoadingSpinner.tsx@ 7621d7b

main
Last change on this file since 7621d7b was dc30259, checked in by Filip Gavrilovski <filipgavrilovski28@…>, 5 months ago

add loading spinner; don't show sidebar for unauthenticated users

  • Property mode set to 100644
File size: 271 bytes
Line 
1const LoadingSpinner = () => {
2 return (
3 <div className="flex h-screen items-center justify-center bg-[#121212]">
4 <div className="w-12 h-12 border-4 border-white/10 border-t-[#1db954] rounded-full animate-spin"></div>
5 </div>
6 );
7};
8
9export default LoadingSpinner;
Note: See TracBrowser for help on using the repository browser.