postiz-app/apps/frontend/src/components/layout/loading.tsx
2024-05-14 18:38:05 +07:00

7 lines
239 B
TypeScript

'use client';
import ReactLoading from 'react-loading';
export const LoadingComponent = () => {
return <div className="flex-1 flex justify-center pt-[100px]"><ReactLoading type="spin" color="#fff" width={100} height={100} /></div>;
};