source: frontend/src/components/Loading.js@ cb0881d

Last change on this file since cb0881d was cb0881d, checked in by MBK <marija.karapandzova@…>, 4 months ago

Set up React frontend and add design styles

  • Property mode set to 100644
File size: 257 bytes
Line 
1import React from 'react';
2
3function Loading() {
4 return (
5 <div className="flex justify-center items-center py-12">
6 <div className="animate-spin rounded-full h-12 w-12 border-b-2 border-blue-600"></div>
7 </div>
8 );
9}
10
11export default Loading;
Note: See TracBrowser for help on using the repository browser.