loading states

This commit is contained in:
2024-08-29 15:25:54 -06:00
parent 10afc745a9
commit 9d6a3d1199
5 changed files with 114 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
import { Spinner } from "@/components/Spinner";
import React from "react";
export default function Loading() {
return (
<div>
<Spinner />
</div>
);
}