* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
11 lines
231 B
TypeScript
11 lines
231 B
TypeScript
import React from 'react';
|
|
import { Loader } from 'UI';
|
|
import ovStl from './overlay.module.css';
|
|
|
|
export default function OverlayLoader() {
|
|
return (
|
|
<div className={ovStl.overlay}>
|
|
<Loader loading />
|
|
</div>
|
|
);
|
|
}
|