rework circulars loaders
This commit is contained in:
@ -9,6 +9,7 @@ import {
|
||||
StoreCape,
|
||||
} from '../api';
|
||||
import { useEffect, useState } from 'react';
|
||||
import { FullScreenLoader } from '../components/FullScreenLoader';
|
||||
|
||||
export default function Shop() {
|
||||
const [storeCapes, setStoreCapes] = useState<StoreCape[]>([]);
|
||||
@ -88,7 +89,7 @@ export default function Shop() {
|
||||
}}
|
||||
>
|
||||
{loading ? (
|
||||
<Typography>Загрузка...</Typography>
|
||||
<FullScreenLoader message="Загрузка..." />
|
||||
) : (
|
||||
<Box
|
||||
sx={{
|
||||
|
||||
Reference in New Issue
Block a user