mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-26 07:38:33 -06:00
11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
import { Spinner } from "@/components/Spinner";
|
|
import React from "react";
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div>
|
|
<Spinner />
|
|
</div>
|
|
);
|
|
}
|