import React from 'react'; import Text from '../../muiComponents/Text'; interface Props { text: string; className?: string; } const NoItems: React.FC = ({ className, text }) => ( {text} ); export default NoItems;