diff --git a/src/app/loading.tsx b/src/app/loading.tsx index 35118e7..2c39055 100644 --- a/src/app/loading.tsx +++ b/src/app/loading.tsx @@ -1,25 +1,25 @@ import { cn } from "@/lib/utils" import { ComponentProps } from "react" export const LoadingSpinner = ({ className }: ComponentProps<"svg">) => { - return - - + return
+ + + +
} export default function Loading() { return ( - <>
- -
+ ) } diff --git a/src/app/story/loading.tsx b/src/app/story/loading.tsx new file mode 100644 index 0000000..033af5c --- /dev/null +++ b/src/app/story/loading.tsx @@ -0,0 +1,5 @@ +import { LoadingSpinner } from "app/loading"; + +export default function Loading() { + return +}