mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 12:25:22 +02:00
10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
|
import { useMemo } from 'react';
|
||
|
|
||
|
import { date } from './date';
|
||
|
import { type } from './type';
|
||
|
import { message } from './message';
|
||
|
|
||
|
export function useColumns() {
|
||
|
return useMemo(() => [date, type, message], []);
|
||
|
}
|