UNPKG

keet

Version:

Minimalist view layer for the web

16 lines (10 loc) 259 B
import Keet from '../' class App extends Keet { componentWillMount () { this.isWillMount = true } } const app = new App() app.mount('test').link('app') console.assert(app.isWillMount, 'link, componentWillMount') export default app