diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-20 17:53:52 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-20 17:54:35 +0300 |
commit | 582a48dc7d1234a8d3e8a435f5fae16bdfcf7599 (patch) | |
tree | 363e549ddf17ce1e30ba2571e92b0930113b78df /src/index.tsx | |
parent | 5f1bf64ed38fdda9143b75f0ab847eebe55eaaaa (diff) | |
download | commercel-ui-582a48dc7d1234a8d3e8a435f5fae16bdfcf7599.tar.gz |
feat: add Transfers upload
Diffstat (limited to 'src/index.tsx')
-rw-r--r-- | src/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.tsx b/src/index.tsx index af5ca5a..71caf35 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -16,12 +16,14 @@ import WaybillPanel from './containers/WaybillPanel'; import ContractorForm from './containers/ContractorForm'; import ProductForm from './containers/ProductForm'; import TransferForm from './containers/TransferForm'; +import TransfersUpload from './containers/TransfersUpload'; services[0].Form = ProductForm; services[1].Form = ContractorForm; services[2].Form = WaybillForm; services[2].Panel = WaybillPanel; services[3].Form = TransferForm; +services[3].routes = { upload: TransfersUpload }; const navigation = [ |