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

28 lines (24 loc) 801 B
import { ViewComponent } from "../../@still/component/super/ViewComponent.js"; export class HomeComponent extends ViewComponent { isPublic = true; template = ` <div class="itWorked still-worked-home-container"> <div> <img class="still-fw-logo" src="@still/img/logo-no-bg.png" /> </div> <h2 class="still-fw-before-logo">Still.js Framework</h2> <h1>It Worked</h1> <p class="still-home-orientation-text"> This is the HomeComponent, go to <b>app/home/HomeComponent&#46;js</b> path<br> and do you adjustments accordingly </p> </div> `; constructor() { super(); } }