import { ReactNode } from "react"; import { Box, Heading, Text } from "@chakra-ui/react"; interface EmptyListProps { title: string; summary: string; createButton?: ReactNode; } function EmptyList({ title, summary, createButton }: EmptyListProps) { return ( {title} {summary} {createButton} ); } export { EmptyList };