From 4b1974e994ca92448867dbcdf0abc85157376c83 Mon Sep 17 00:00:00 2001 From: Atridad Lahiji <88056492+atridadl@users.noreply.github.com> Date: Mon, 5 Jun 2023 17:04:55 -0600 Subject: [PATCH] Removed my loading spinner component in favour of DaisyUIs --- src/components/Loading.tsx | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/components/Loading.tsx diff --git a/src/components/Loading.tsx b/src/components/Loading.tsx deleted file mode 100644 index e60f550..0000000 --- a/src/components/Loading.tsx +++ /dev/null @@ -1,14 +0,0 @@ -const Loading: React.FC = () => { - return ( -
- - Loading... - -
- ); -}; - -export default Loading;