1.7.0 • Published 3 years ago

quickjs-component v1.7.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Made with ❤️ from Echodesk Technology

Introduction

Quick.js is a JavaScript framework for building user interfaces.

// index.html
<body>
  <div id="app"></div>
//...
</body>
import Quick from "quickjs-component"
import Welcome from "./views/Welcome";


export default class App extends Quick.Component {
    constructor(params) {
        super(params)
    }
    render() {
        return (
            <div>
                <h1>Home with another comp</h1>
                <Welcome name={"Quick.js"} />
            </div>
        )
    }

}
import Quick from "quickjs-component";

const Welcome = (name) => (
    <p>Welcome to your {name} App</p>
)

export default Welcome

Documentation

Visit quickjs.org for docs

Contribution

For now contribution are limited. If you are interested in contributing please make sure to email at Email

Licence

MIT

1.7.0

3 years ago

1.6.0

3 years ago

1.5.0

3 years ago

1.4.0

3 years ago

1.3.0

3 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago