1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-21 06:19:41 +02:00
portainer/app/react/kubernetes/applications/ItemView/PlacementsDatatable/columns/index.tsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
323 B
TypeScript
Raw Normal View History

import { buildExpandColumn } from '@@/datatables/expand-column';
import { Node } from '../../types';
import { columnHelper } from './helper';
import { status } from './status';
export const columns = [
buildExpandColumn<Node>(),
status,
columnHelper.accessor('Name', {
header: 'Node',
id: 'node',
}),
];