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

https://github.com/lioncat2002/smikejs

A JSX framework
https://github.com/lioncat2002/smikejs

framework frontend javascript react

Last synced: about 1 year ago
JSON representation

A JSX framework

Awesome Lists containing this project

README

          

# SmikeJS
> SmikeJS is a react-esque jsx framework which lets you make frontend applications super fast!
## Usage:
To use SmikeJS, just drop in the Smike.js file into your project and you will be ready to go!

## Example:
### SmikeJS Counter App:
```js
import Smike from "./Smike"

/** @jsx Smike.createElement */
const container=document.getElementById("app")

function Counter(){
const [state,setState]=Smike.useState(1)
return (

setState(c=>c+1)}>
Counter: {state}


)
}

const element =
Smike.render(element, container)
```