@stilljs/apploader
Version:
Still.js Lib for integrating microservices to other Libraries/Frameworks (e.g. React)
17 lines (15 loc) • 462 B
JavaScript
export class HomeComponent extends ViewComponent {
isPublic = true;
template = `
<div class="itWorked still-worked-home-container">
<h1><u>Still.js Microfrontend Project</u></h1>
<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.js</b> path<br>
and do you adjustments accordingly
</p>
</div>
`;
}