import {Component, h} from '@stencil/core'; @Component({ tag: 'hy-pager', styleUrl: 'hy-pager.scss', shadow: true, }) export class HyPager { render() { const classAttributes = ['hy-pager'].join(' '); return ( <ul class={classAttributes}> <slot></slot> </ul> ); } }