From 865b41114060765308d560181f4996c0aa7a3e74 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Fri, 26 Mar 2021 01:06:44 +0300 Subject: refactor: move Service to lib/ --- src/services/contractors/ContractorPanel.tsx | 2 +- src/services/contractors/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/services/contractors') diff --git a/src/services/contractors/ContractorPanel.tsx b/src/services/contractors/ContractorPanel.tsx index a3650ef..f7ed8ad 100644 --- a/src/services/contractors/ContractorPanel.tsx +++ b/src/services/contractors/ContractorPanel.tsx @@ -1,6 +1,6 @@ import React from 'react'; import Button from '../../components/Button'; -import { PanelProps } from '../../containers/Service/ServiceContext'; +import { PanelProps } from '../../lib/ServiceContext'; const ContractorPanel: React.FC = ({ item }) => { diff --git a/src/services/contractors/index.ts b/src/services/contractors/index.ts index c9e71a1..2341f3a 100644 --- a/src/services/contractors/index.ts +++ b/src/services/contractors/index.ts @@ -1,6 +1,6 @@ import Form from './ContractorForm'; import Panel from './ContractorPanel'; -import { ServiceParams } from '../../containers/Service/ServiceContext'; +import { ServiceParams } from '../../lib/ServiceContext'; const service: ServiceParams = { route: 'contractors', -- cgit v1.2.3