|
|
|
|
|
by dammitfoo
2865 days ago
|
|
Yes, exactly. Using JSX is also easy for development purposes if you don't like hyperscript syntax. Just add babel.min.js file and use <script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<script type="text/jsx">
/** @jsx m */
// your can use jsx here
</script>
and bingo! You can use JSX. No need to use npm, webpack, etc. |
|