/* @component-map
* App — Main container, renders rainbow scene with hello world message
* @end-component-map */
function App() {
return (
Hello, World! 🌈
somewhere over the rainbow...
);
}
ReactDOM.createRoot(document.getElementById("root")).render();