dmux
Version:
Tmux pane manager with AI agent integration for parallel development workflows
13 lines • 624 B
JavaScript
import React from 'react';
import { Box, Text } from 'ink';
const MergeConfirmationDialog = ({ pane }) => {
return (React.createElement(Box, { borderStyle: "double", borderColor: "yellow", paddingX: 1, marginTop: 1 },
React.createElement(Box, { flexDirection: "column" },
React.createElement(Text, { color: "yellow", bold: true }, "Worktree merged successfully!"),
React.createElement(Text, null,
"Close the pane \"",
pane.slug,
"\"? (y/n)"))));
};
export default MergeConfirmationDialog;
//# sourceMappingURL=MergeConfirmationDialog.js.map