fix: поправил автоподстановку даты в форму редактирования лекции [#29]
All checks were successful
platform/bro/pipeline/head This commit looks good

This commit is contained in:
Primakov Alexandr Alexandrovich
2024-08-12 16:30:01 +03:00
parent 2d98b55bbc
commit 87c08e18bd
11 changed files with 221 additions and 186 deletions

View File

@@ -0,0 +1 @@
export { XlSpinner } from './xl-spinner';

View File

@@ -0,0 +1,20 @@
import React from 'react'
import {
Container,
Center,
Spinner,
} from '@chakra-ui/react'
export const XlSpinner = () => (
<Container maxW="container.xl">
<Center h="300px">
<Spinner
thickness="4px"
speed="0.65s"
emptyColor="gray.200"
color="blue.500"
size="xl"
/>
</Center>
</Container>
)