export const EmptyState = (props: { children: React.ReactNode; className?: string; }) => { return (
{props.children}
); };