import { PlusIcon } from "@heroicons/react/solid"; interface props { title: string; subtitle: string; buttonText: string; buttonAction: any; } const EmptySimple = ({ title, subtitle, buttonText, buttonAction }: props) => (

{title}

{subtitle}

) export default EmptySimple;