/* eslint-disable import/prefer-default-export */ import type { ColumnsType } from 'antd/lib/table'; import { formatMoney } from 'tools/format'; import type { Risk } from './types'; export const columns: ColumnsType = [ { key: 'riskName', dataIndex: 'riskName', title: 'Риск', width: '55%', }, { key: 'sum', title: 'Страховая сумма', dataIndex: 'sum', render: (value: number) => formatMoney(value, 'RUB'), }, { key: 'premium', title: 'Страховая премия по риску', dataIndex: 'premium', render: (value: number) => formatMoney(value, 'RUB'), }, ];