import { Tag, Tooltip } from 'antd'; export const columns = [ { title: 'Command', dataIndex: 'cmd', key: 'cmd', }, { title: 'Type', dataIndex: 'type', key: 'type', render: (v: string) => {v} }, { title: 'Content', dataIndex: 'content', key: 'content', render: (v: string) => ( {v} ), }, ];