SLR / src /FullPageLoader.jsx
leonsimon23's picture
Upload 8 files
8f2f1a5 verified
raw
history blame
254 Bytes
// src/components/FullPageLoader.js
import React from 'react';
import { Spin } from 'antd';
const FullPageLoader = () => {
return (
<div className="full-page-loader">
<Spin size="large" />
</div>
);
};
export default FullPageLoader;