mirror of
https://github.com/alexmickelson/canvasManagement.git
synced 2026-03-25 23:28:33 -06:00
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
import React from "react";
|
|
import "./spinner.css"
|
|
|
|
export const Spinner = () => {
|
|
return (
|
|
<div className="text-center m-3">
|
|
<span className="loader"></span>
|
|
</div>
|
|
);
|
|
};
|