14 lines
268 B
TypeScript
14 lines
268 B
TypeScript
import { IGroup } from 'core/types/Calculation/components';
|
|
|
|
export const resultsTable: IGroup[] = [
|
|
{
|
|
style: { columnsNumber: 1 },
|
|
blocks: [
|
|
{
|
|
title: 'График платежей',
|
|
elements: ['tableResults'],
|
|
},
|
|
],
|
|
},
|
|
];
|