feat(HAI-001): move new task creation to triage column with button in column header

This commit is contained in:
Dustin Byrne
2026-03-25 19:57:02 -04:00
parent 8e7ba81d34
commit 003f16f285
5 changed files with 16 additions and 15 deletions

View File

@@ -1,17 +1,10 @@
interface HeaderProps {
onNewTask: () => void;
}
export function Header({ onNewTask }: HeaderProps) {
export function Header() {
return (
<header className="header">
<div className="header-left">
<h1 className="logo">hai</h1>
<span className="logo-sub">board</span>
</div>
<button className="btn btn-primary" onClick={onNewTask}>
+ New Task
</button>
</header>
);
}