chore:调度文件拆分

This commit is contained in:
xiaozhu
2026-08-05 15:58:18 +08:00
parent 8c4d2c0517
commit 9b5de51a68
9 changed files with 771 additions and 644 deletions
@@ -0,0 +1,25 @@
import Icon from "../../components/common/Icon";
export function ScheduleCanvasHeader({
linkSourceId,
onCancelLink,
}: {
linkSourceId: string | null;
onCancelLink: () => void;
}) {
return (
<div className="schedule-canvas-title">
<div>
<strong></strong>
<span>
线
</span>
</div>
{linkSourceId && (
<button type="button" onClick={onCancelLink}>
线
</button>
)}
</div>
);
}