@shutootaki/gwm
Version:
git worktree manager CLI
8 lines • 546 B
JavaScript
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { Text, Box } from 'ink';
import { loadConfig } from '../config.js';
export const ConfigTest = () => {
const config = loadConfig();
return (_jsxs(Box, { flexDirection: "column", children: [_jsx(Text, { bold: true, color: "cyan", children: "Configuration:" }), _jsxs(Text, { children: ["Worktree Base Path: ", config.worktree_base_path] }), _jsxs(Text, { children: ["Main Branches: ", config.main_branches.join(', ')] })] }));
};
//# sourceMappingURL=ConfigTest.js.map