import { FC, MutableRefObject } from 'react'; import { Prompt } from '@/types/prompt'; interface Props { prompts: Prompt[]; activePromptIndex: number; onSelect: () => void; onMouseOver: (index: number) => void; promptListRef: MutableRefObject; } export const PromptList: FC = ({ prompts, activePromptIndex, onSelect, onMouseOver, promptListRef, }) => { return ( ); };