import React, { memo } from 'react'; import { Box } from '@chakra-ui/react'; const Loading = ({ text }: { text?: string }) => { return ( {text && ( {text} )} ); }; export default memo(Loading);