You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/kubernetes/ingresses/IngressDatatable/columns/index.tsx

12 lines
337 B

import { useMemo } from 'react';
import { name } from './name';
import { type } from './type';
import { namespace } from './namespace';
import { className } from './className';
import { ingressRules } from './ingressRules';
export function useColumns() {
return useMemo(() => [name, namespace, className, type, ingressRules], []);
}