/* @component-map * App — Main container, displays a hello world greeting card * @end-component-map */ function App() { return (

👋 Hello, World!

This app is live and ready to use.

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