import React from 'react'; import { Box, Text } from 'ink'; interface FooterProps { queryLength: number; } const Footer: React.FC = ({ queryLength }) => { return ( {queryLength === 0 ? "? for shortcuts" : ""} Gemini ); }; export default Footer;