function App() { return (
Hello, React 18!
); } // Create a root and render the React component into the root div const root = ReactDOM.createRoot(document.getElementById('reactTest')); root.render();