import { moduleMetadata } from '@storybook/angular'; import { InfoTableComponent } from './info-table.component'; export default { title: 'Common/Info Table', component: InfoTableComponent, decorators: [ moduleMetadata({ declarations: [ InfoTableComponent ] }), ], }; const Template = (args: InfoTableComponent) => ({ component: InfoTableComponent, props: args, template: ` ORIGIN DESTINATION IP 172.30.95.175 172.30.95.241 NAME KUMC-G430-21 - EXT CAB22MedProVirt MedPro-14 ` }); // _____ _ _ // / ____| | (_) // | (___ | |_ ___ _ __ _ ___ ___ // \___ \| __/ _ \| '__| |/ _ \/ __| // ____) | || (_) | | | | __/\__ \ // |_____/ \__\___/|_| |_|\___||___/ export const Primary = Template.bind({});