Skip to content
Snippets Groups Projects
hy-pager.tsx 309 B
Newer Older
  • Learn to ignore specific revisions
  • Ekaterina Kondareva's avatar
    Ekaterina Kondareva committed
    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>
        );
      }
    }