убрал точку с запятой

This commit is contained in:
Alexey 2021-07-29 15:15:09 +05:00
parent 68a8b771cc
commit a07e46ce6c
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ export const makeColumn = (title:string, key:string, other?:any) => ({
key: key, key: key,
dataIndex: key, dataIndex: key,
...other, ...other,
}); })
export const makeColumnsPlanFact = (title:string, keyPlan:string, keyFact?:string, gruopOther?:any) => export const makeColumnsPlanFact = (title:string, keyPlan:string, keyFact?:string, gruopOther?:any) =>
{ {

View File

@ -1,6 +1,6 @@
import {useState, useEffect} from 'react' import {useState, useEffect} from 'react'
import {useParams} from 'react-router-dom' import {useParams} from 'react-router-dom'
import {Row, Col, Select, Table} from 'antd' import {Row, Col, Select} from 'antd'
import LoaderPortal from '../components/LoaderPortal' import LoaderPortal from '../components/LoaderPortal'
import { Column } from '../components/Column' import { Column } from '../components/Column'
import {CustomColumn} from '../components/CustomColumn' import {CustomColumn} from '../components/CustomColumn'