UNPKG

@stilljs/core

Version:

![NPM Version](https://img.shields.io/npm/v/%40stilljs%2Fcore) ![NPM Downloads](https://img.shields.io/npm/d18m/%40stilljs%2Fcore) ![jsDelivr hits (npm)](https://img.shields.io/jsdelivr/npm/hy/%40stilljs%2Fcore) ![YouTube Channel Views](https://img.shield

18 lines (13 loc) 468 B
import { StillAppMixin } from "../@still/component/super/AppMixin.js"; import { Components } from "../@still/setup/components.js"; import { HomeComponent } from "../app/home/HomeComponent.js"; import { AppTemplate } from "./app-template.js"; export class StillAppSetup extends StillAppMixin(Components) { constructor() { super(); this.setHomeComponent(HomeComponent); } async init() { return await AppTemplate.newApp(); } }