This project was made with the intention of turning compiled React code back into JSX.
For example,
const x = React.createElement("div", null, "Hello, World!");
Should become:
const x = <div>Hello, World!</div>;
This code is extremely shit and WIP. Please do give it a try and create an issue if you find any problems! Please provide some example code that I can work with to diagnose the issue. Thanks :)
npm install
- Create a folder called
input
and place your.js
files in there. - Run
npm run start
Copyright © 2023, https://github.com/MeguminSama & https://github.com/vftable