Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tobua/epic-jsx

A better React.
https://github.com/tobua/epic-jsx

framework jsx react

Last synced: about 2 months ago
JSON representation

A better React.

Awesome Lists containing this project

README

        

# epic-jsx

JSX Logo

React-compatible React rearchitecture based on [Didact](https://github.com/pomber/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

# Usage

```jsx
import { render, useState } from 'epic-jsx'

function App() {
const [count, setCount] = useState(1)
return setCount(count + 1)}>Increment
}

render()
```