mirror of https://github.com/portainer/portainer
24 lines
521 B
TypeScript
24 lines
521 B
TypeScript
|
import { name } from './name';
|
||
|
import { type } from './type';
|
||
|
import { namespace } from './namespace';
|
||
|
import { ports } from './ports';
|
||
|
import { clusterIP } from './clusterIP';
|
||
|
import { externalIP } from './externalIP';
|
||
|
import { targetPorts } from './targetPorts';
|
||
|
import { application } from './application';
|
||
|
import { created } from './created';
|
||
|
|
||
|
export function useColumns() {
|
||
|
return [
|
||
|
name,
|
||
|
application,
|
||
|
namespace,
|
||
|
type,
|
||
|
ports,
|
||
|
targetPorts,
|
||
|
clusterIP,
|
||
|
externalIP,
|
||
|
created,
|
||
|
];
|
||
|
}
|