diff options
author | 2022-01-28 04:39:20 -0800 | |
---|---|---|
committer | 2022-01-28 04:39:20 -0800 | |
commit | 8f27b27a0e54f737b849dedf098209546f86b709 (patch) | |
tree | 8a6bee551247836627eca0c49ecba68bb5345ef3 | |
parent | aced5882d153dbe56b2d4d1e4989a10da0e2ed04 (diff) | |
download | bun-8f27b27a0e54f737b849dedf098209546f86b709.tar.gz bun-8f27b27a0e54f737b849dedf098209546f86b709.tar.zst bun-8f27b27a0e54f737b849dedf098209546f86b709.zip |
Update README.md
-rw-r--r-- | README.md | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -1124,8 +1124,6 @@ export default jsx( ); ``` -Note that it automatically imports the modern JSX runtime - If a macro is used, it will be run in the same thread as the transpiler, but in a separate event loop from the rest of your application. Currently, globals between macros and regular code are shared, which means it is possible (but not recommended) to share state between macros and regular code. Attempting to use AST nodes outside of a macro is undefined behavior. #### `Bun.Transpiler.transform` @@ -1160,8 +1158,6 @@ export default jsx( ); ``` -Note that it automatically imports the modern JSX runtime. - You can also pass a `Loader` as a string ```js |