← Back to context Comment by mehagar 14 hours ago How is it overly verbose?I find it very intuitive, with the exception of useEffect. 1 comment mehagar Reply spartanatreyu 5 hours ago React's hello world:```js<div id="root"></div><script>import React from 'https://esm.sh/react@19';import ReactDOM from 'https://esm.sh/react-dom@19/client';const root = ReactDOM.createRoot(document.getElementById('root'));root.render(<h1>Hello, world!</h1>); </script>```---HTML's hello world:```html<h1>Hello, world!</h1>```---JS's hello world:Nothing, it was already done in HTML
spartanatreyu 5 hours ago React's hello world:```js<div id="root"></div><script>import React from 'https://esm.sh/react@19';import ReactDOM from 'https://esm.sh/react-dom@19/client';const root = ReactDOM.createRoot(document.getElementById('root'));root.render(<h1>Hello, world!</h1>); </script>```---HTML's hello world:```html<h1>Hello, world!</h1>```---JS's hello world:Nothing, it was already done in HTML
React's hello world:
```js
<div id="root"></div>
<script>
import React from 'https://esm.sh/react@19';
import ReactDOM from 'https://esm.sh/react-dom@19/client';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<h1>Hello, world!</h1>); </script>
```
---
HTML's hello world:
```html
<h1>Hello, world!</h1>
```
---
JS's hello world:
Nothing, it was already done in HTML