import { Icon, Stack, Text } from '@chakra-ui/react'; import { __ } from '@wordpress/i18n'; import React from 'react'; import { BiInfoCircle } from 'react-icons/bi'; import { Td, Tr } from 'react-super-responsive-table'; const NoGroupsMessage: React.FC = () => { return ( {__('No groups found.', 'learning-management-system')} ); }; export default NoGroupsMessage;