React-compatible JSX renderer.
npm install epic-jsxReact-compatible React rearchitecture based on Didact by Rodrigo Pombo.
- โ๏ธ Extensible components
- ๐ Lifecycle access
- ๐ณ Navigatable tree
- ๐ฏ Optimizable Virtual DOM
- ๐๏ธ ES Modules
- ๐ TypeScript source and built-in types
- ๐งช Built-in testing framework
``jsx
import { render, useState } from 'epic-jsx'
function App() {
const [count, setCount] = useState(1)
return
}
render(
``