Refactor into grpc events

This commit is contained in:
Gregory Schier
2024-02-22 00:49:22 -08:00
parent bb628e699f
commit ca4d9b1ad6
31 changed files with 851 additions and 595 deletions

View File

@@ -6,7 +6,7 @@ interface Props {
export function EmptyStateText({ children }: Props) {
return (
<div className="rounded-lg border border-dashed border-highlight h-full text-gray-400 flex items-center justify-center">
<div className="rounded-lg border border-dashed border-highlight h-full py-2 text-gray-400 flex items-center justify-center">
{children}
</div>
);