inputs
1 year ago
wizard
1 year ago
Divider.jsx
1 year ago
ErrorMessage.jsx
1 year ago
Preloader.jsx
1 year ago
SelectAccount.jsx
1 year ago
Preloader.jsx
13 lines
| 1 | import { wizard } from '@advancedAds/i18n'; |
| 2 | |
| 3 | export default function Preloader() { |
| 4 | return ( |
| 5 | <div className="absolute inset-0 flex justify-center items-center z-10 bg-white bg-opacity-70"> |
| 6 | <img |
| 7 | alt={wizard.processing} |
| 8 | src={`${advancedAds.endpoints.adminUrl}images/spinner-2x.gif`} |
| 9 | /> |
| 10 | </div> |
| 11 | ); |
| 12 | } |
| 13 |