feat(web-ui): CompileTab '영상 만들기' 버튼 + createPipeline payload 시그니처

This commit is contained in:
2026-05-09 13:30:31 +09:00
parent 53e9938903
commit 9c12de4593
4 changed files with 45 additions and 3 deletions

View File

@@ -49,7 +49,12 @@ export default function YoutubeTab({ library, initialTrackId, onClearInitialTrac
onClearInitialTrack={onClearInitialTrack}
/>
)}
{subtab === 'compile' && <CompileTab library={library} />}
{subtab === 'compile' && (
<CompileTab
library={library}
onSwitchToPipeline={() => setSubtab('pipeline')}
/>
)}
{subtab === 'trends' && <TrendsTab />}
{subtab === 'revenue' && <RevenueTab />}
{subtab === 'setup' && <SetupTab />}