- {columns.map(({ id, tKey, toValue }) => (
-
- {cellCreator?.[id]?.({
- kind,
- t,
- value: toValue(resource),
- resource,
- }) ?? null}
- |
- ))}
-
- );
- };
-
-export default ProviderRow;
diff --git a/src/Providers/components/TableView.tsx b/src/Providers/components/TableView.tsx
deleted file mode 100644
index 97c22e9b5..000000000
--- a/src/Providers/components/TableView.tsx
+++ /dev/null
@@ -1,98 +0,0 @@
-import React, { useState } from 'react';
-import { useTranslation } from 'src/internal/i18n';
-
-import { TableComposable, Tbody, Th, Thead, Tr } from '@patternfly/react-table';
-
-import { NAME } from './shared';
-import { buildSort, Field, localeCompare, SortType } from './shared';
-
-function compareWith