diff options
Diffstat (limited to 'packages/cli/src/ui/components')
| -rw-r--r-- | packages/cli/src/ui/components/Help.tsx (renamed from packages/cli/src/ui/components/Intro.tsx) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/ui/components/Intro.tsx b/packages/cli/src/ui/components/Help.tsx index 2e557917..3ca182be 100644 --- a/packages/cli/src/ui/components/Intro.tsx +++ b/packages/cli/src/ui/components/Help.tsx @@ -9,11 +9,11 @@ import { Box, Text } from 'ink'; import { Colors } from '../colors.js'; import { SlashCommand } from '../hooks/slashCommandProcessor.js'; -interface Intro { +interface Help { commands: SlashCommand[]; } -export const Intro: React.FC<Intro> = ({ commands }) => ( +export const Help: React.FC<Help> = ({ commands }) => ( <Box flexDirection="column" marginBottom={1}> <Text bold color={Colors.Foreground}> Abilities: |
