import React, { HTMLAttributes } from 'react';
export interface EmptyProps extends Omit, 'title'>{
title: React.ReactNode;
subtitle?: React.ReactNode;
action?: React.ReactNode;
}
const Empty = ({
title,
subtitle,
action,
}: EmptyProps) => {
return (
{title}
{subtitle}
{action}
)
}
export default Empty;