mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-23 03:12:24 +03:00
d848d5aa0b
* chore: add husky * chore(eslint): add no-unused-vars rule * chore(eslint): add no-explicit-any rule * chore: add PR template
9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
import { FC } from "react";
|
|
import { FaSpinner } from "react-icons/fa";
|
|
|
|
const Spinner: FC = () => {
|
|
return <FaSpinner className="animate-spin m-5" />;
|
|
};
|
|
|
|
export default Spinner;
|