import { Component, h } from '@stencil/core'; @Component({ tag: 'app-home', styleUrl: 'app-home.css', shadow: true, }) export class AppHome { render() { return (

Welcome to the Stencil App Starter. You can use this starter to build entire apps all with web components using Stencil! Check out our docs on{' '} stenciljs.com to get started.

); } }