From 84623c73b826d22d9b7b3103796bc754e7433b96 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 21 Mar 2021 12:56:23 +0300 Subject: feat: add Contractor Panel --- src/containers/ContractorPanel.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/containers/ContractorPanel.tsx (limited to 'src/containers') diff --git a/src/containers/ContractorPanel.tsx b/src/containers/ContractorPanel.tsx new file mode 100644 index 0000000..02e11ba --- /dev/null +++ b/src/containers/ContractorPanel.tsx @@ -0,0 +1,31 @@ +import React from 'react'; +import { useHistory } from 'react-router-dom'; +import Button from '../components/Button'; +import { patch, baseURL } from '../requests'; +import { PanelProps } from './Service/ServiceContext'; + + +const ContractorPanel: React.FC = ({ item, mutate }) => { + const history = useHistory(); + + return ( +
+
+ + + + +
+
+ ); +}; + +export default ContractorPanel; -- cgit v1.2.3