feat(renderer): TabBar skeleton (no tabs yet — wired in Phase 5)

This commit is contained in:
2026-06-05 11:45:33 +05:30
parent 7fbbd60525
commit 95e2f45f1f
2 changed files with 17 additions and 0 deletions
@@ -0,0 +1,7 @@
export function TabBar() {
return (
<div className="flex h-9 items-center border-b border-border bg-card/20 px-3 text-xs text-muted-foreground">
<span>No files open</span>
</div>
);
}