+ );
+ };
+ return ;
+ },
+ width: '10%',
+ };
+ },
+});
diff --git a/plugins/jenkins/src/components/BuildsPage/lib/CITable/index.ts b/plugins/jenkins/src/components/BuildsPage/lib/CITable/index.ts
index b5a7ac6337..3be4dae9ce 100644
--- a/plugins/jenkins/src/components/BuildsPage/lib/CITable/index.ts
+++ b/plugins/jenkins/src/components/BuildsPage/lib/CITable/index.ts
@@ -13,4 +13,4 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-export { CITable, ciTableColumns } from './CITable';
+export { CITable } from './CITable';
diff --git a/plugins/jenkins/src/components/BuildsPage/lib/CITable/presets.ts b/plugins/jenkins/src/components/BuildsPage/lib/CITable/presets.ts
new file mode 100644
index 0000000000..7c0dda9970
--- /dev/null
+++ b/plugins/jenkins/src/components/BuildsPage/lib/CITable/presets.ts
@@ -0,0 +1,28 @@
+/*
+ * Copyright 2021 The Backstage Authors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { Project } from '../../../../api';
+import { columnFactories } from './columns';
+import { TableColumn } from '@backstage/core-components';
+
+export const defaultCITableColumns: TableColumn[] = [
+ columnFactories.createTimestampColumn(),
+ columnFactories.createSourceColumn(),
+ columnFactories.createBuildColumn(),
+ columnFactories.createTestColumn(),
+ columnFactories.createStatusColumn(),
+ columnFactories.createActionsColumn(),
+];
diff --git a/plugins/jenkins/src/index.ts b/plugins/jenkins/src/index.ts
index 3a17a879be..7562026bdc 100644
--- a/plugins/jenkins/src/index.ts
+++ b/plugins/jenkins/src/index.ts
@@ -34,4 +34,3 @@ export {
} from './components/Router';
export { JENKINS_ANNOTATION, LEGACY_JENKINS_ANNOTATION } from './constants';
export * from './api';
-export { ciTableColumns } from './components/BuildsPage/lib/CITable';