import PipelinesTableRowComponent from './pipelines_table_row'; /** * Pipelines Table Component. * * Given an array of objects, renders a table. */ export default { props: { pipelines: { type: Array, required: true, default: () => ([]), }, service: { type: Object, required: true, }, }, components: { 'pipelines-table-row-component': PipelinesTableRowComponent, }, template: `
Status Pipeline Commit Stages
`, };