LoadingScreen.tsx 268 B

123456789101112
  1. import { Flex, Spinner } from '@chakra-ui/react';
  2. import React from 'react';
  3. const LoadingScreen = () => {
  4. return (
  5. <Flex height="100vh" alignItems="center" justifyContent="center">
  6. <Spinner size="lg" />
  7. </Flex>
  8. );
  9. };
  10. export default LoadingScreen;