mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
15 lines
323 B
TypeScript
15 lines
323 B
TypeScript
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',
|
|
}),
|
|
];
|