/* @component-map * App — Main container, layout with background orbs and header * FactGenerator — Displays animal facts, handles AI generation and fact history * @end-component-map */ import { FactGenerator } from './components/FactGenerator.jsx'; function App() { return (
🌍 AI-Powered

Animal Facts

Discover wild, surprising, and delightful facts about creatures across the planet.

); } ReactDOM.createRoot(document.getElementById("root")).render();