quickjs-component
TypeScript icon, indicating that this package has built-in type declarations

1.7.0 • Public • Published


Downloads GitHub

Made with ❤️ from Echodesk Technology

Introduction

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

Installation

npm install quickjs-component

Basic

// index.html

Entry

// index.html
<body>
  <div id="app"></div>
//...
</body>
  • JS
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>
        )
    }

}

Hello Component:

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

Copyright (c) 2021-present, Kehinde Akinsanya

Readme

Keywords

none

Package Sidebar

Install

npm i quickjs-component

Weekly Downloads

37

Version

1.7.0

License

ISC

Unpacked Size

9.33 kB

Total Files

4

Last publish

Collaborators

  • serverguyken