import { moduleMetadata } from '@storybook/angular'; import { withA11y } from '@storybook/addon-a11y'; import { PagingComponent } from './paging.component'; export default { title: 'Visualizations/Table/Paging', component: PagingComponent, decorators: [ moduleMetadata({ declarations: [ PagingComponent ] }), withA11y ] }; export const Basic = () => ({ component: PagingComponent, props: { model: { currentPage: 1, perPage: 10, pageCount: 10 } } }); export const OnePage = () => ({ component: PagingComponent, props: { model: { currentPage: 1, perPage: 1, pageCount: 1 } } });