// modules/vibecoder/src/surfaces/VibeCoderLeftCurtain.tsx // // VibeCoderLeftCurtain — Surface 1 (left) of the VibeCoder workspace. // Hosts the FileTreeRail (file browser) with a project-list filter // search box on top. // // Standalone-only path. FVS mounts FileTreeRail inside the chrome's // left rail; here the left curtain IS the rail. import * as React from 'react'; import { FileTreeRail } from '../editor/FileTreeRail'; export function VibeCoderLeftCurtain(): React.ReactElement { return (
); }