Const
Will call the Content function inside a Promise, Note that the Content function is not wrapped in a createElement(). It is called directly inside the Promise.
This allows you to have yielding code inside of an element
e.g.
return <> {() => task.wait(1); return } </>
Optional
Will call the Content function inside a Promise, Note that the Content function is not wrapped in a createElement(). It is called directly inside the Promise.
This allows you to have yielding code inside of an element
e.g.
return <>{() => task.wait(1); return } </>