UNPKG

react-gemini-ai-bot

Version:

This project provides a React component for integrating a chatbot powered by Gemini AI.

13 lines (10 loc) 178 B
import { Chatbot } from "./lib/index"; function App() { const apiKey = "YOUR_API_KEY"; return ( <> <Chatbot apiKey={apiKey} /> </> ); } export default App;