/** * @prettier * @flow */ import React from 'react'; import { IProps } from './types'; import { Wrapper } from './styles'; const NoItems = ({ text }: IProps) => (

{text}

); export default NoItems;