summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2021-03-14 12:08:32 +0300
committereug-vs <eug-vs@keemail.me>2021-03-14 12:08:32 +0300
commit8e011b65f346386abe26afcce737dd59c5865988 (patch)
tree68e1159eea6ec6ea65740bf61e5ee1182883dae4 /src/index.tsx
parentdfe13c7c061b4b2fd6dfde8e1c3c284d574ad8f2 (diff)
downloadcommercel-ui-8e011b65f346386abe26afcce737dd59c5865988.tar.gz
feat: add Waybills
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/index.tsx b/src/index.tsx
index 1005a9d..e637e68 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -11,6 +11,14 @@ import Home from './containers/Home';
import Service from './containers/Service/Service';
import { ServiceProvider } from './containers/Service/ServiceContext';
import services from './services';
+import WaybillForm from './containers/WaybillForm';
+import ContractorForm from './containers/ContractorForm';
+import ProductForm from './containers/ProductForm';
+
+services[0].Form = ProductForm;
+services[1].Form = ContractorForm;
+services[2].Form = WaybillForm;
+
const navigation = [
{ name: 'Главная', route: '/' },