mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-19 14:55:50 +00:00
纯格式化:移除分号、React Compiler import、import 多行展开。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
645 B
TypeScript
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>
|
|
)
|
|
}
|