Really love the new JSX-Fragment syntax. It's great 💯
I was wondering if we could enable it for custom jsxFactory in the future. I'd really love to use this feature outside of react 👍
Use cases
Basically any non-react framework that works with jsx (mithril, preact, custom ones...).
Current workaround:
// my-library.tsimport{h,Fragment}from"./my-library";exportconstReact={createElement: h,
Fragment,}
Really love the new JSX-Fragment syntax. It's great 💯
I was wondering if we could enable it for custom
jsxFactoryin the future. I'd really love to use this feature outside of react 👍Use cases
Basically any non-react framework that works with jsx (mithril, preact, custom ones...).
Current workaround: