Files
claude-code/src/components/HelpV2/General.tsx
claude-code-best a574ea205b style(B1-5): 格式化 components其余 + hooks + tools (232 files)
纯格式化:移除分号、React Compiler import、import 多行展开。

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-04 22:50:19 +08:00

23 lines
645 B
TypeScript

import * as React from 'react'
import { Box, Text } from '../../ink.js'
import { PromptInputHelpMenu } from '../PromptInput/PromptInputHelpMenu.js'
export function General(): React.ReactNode {
return (
<Box flexDirection="column" paddingY={1} gap={1}>
<Box>
<Text>
Claude understands your codebase, makes edits with your permission,
and executes commands right from your terminal.
</Text>
</Box>
<Box flexDirection="column">
<Box>
<Text bold>Shortcuts</Text>
</Box>
<PromptInputHelpMenu gap={2} fixedWidth={true} />
</Box>
</Box>
)
}