import React from 'react'; import Typography from '@material-ui/core/Typography'; interface Props { text: string; className?: string; } const NoItems: React.FC = ({ className, text }) => ( {text} ); export default NoItems;