dmux
Version: 
Tmux pane manager with AI agent integration for parallel development workflows
12 lines • 855 B
JavaScript
import React from 'react';
import { Box, Text } from 'ink';
const AgentChoiceDialog = ({ agentChoice }) => {
    return (React.createElement(Box, { borderStyle: "round", borderColor: "cyan", paddingX: 1, marginTop: 1 },
        React.createElement(Box, { flexDirection: "column" },
            React.createElement(Text, null, "Select agent (\u2190/\u2192, 1/2, C/O, Enter, ESC):"),
            React.createElement(Box, { marginTop: 1, gap: 3 },
                React.createElement(Text, { color: agentChoice === 'claude' ? 'cyan' : 'white' }, agentChoice === 'claude' ? '▶ Claude Code' : '  Claude Code'),
                React.createElement(Text, { color: agentChoice === 'opencode' ? 'cyan' : 'white' }, agentChoice === 'opencode' ? '▶ opencode' : '  opencode')))));
};
export default AgentChoiceDialog;
//# sourceMappingURL=AgentChoiceDialog.js.map