/* @component-map * App — Main container, renders rainbow scene with hello world message * @end-component-map */ function App() { return (
{/* Main rainbow */} {/* Second small rainbow */} {/* Clouds left */} {/* Clouds right */} {/* Sparkles */}

Hello, World! 🌈

somewhere over the rainbow...

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