1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 12:25:22 +02:00
portainer/app/react/nomad/jobs/EventsView/EventsDatatable/columns/index.tsx

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

10 lines
218 B
TypeScript
Raw Normal View History

import { useMemo } from 'react';
import { date } from './date';
import { type } from './type';
import { message } from './message';
export function useColumns() {
return useMemo(() => [date, type, message], []);
}